<?php
$alphabet = '0123456789abcdefghijklmnopqrstuvwxyz';
$allowed_symbols = '02346789';
$fontsdir = 'fonts';
$length = 3;
$width = 50;
$height = 32;
$fluctuation_amplitude = 2;
$no_spaces = FALSE;
$show_credits = FALSE;
$credits = 'blog';
$foreground_color = array(mt_rand(0, 100), mt_rand(0, 100), mt_rand(0, 100));
$background_color = array(mt_rand(200, 255), mt_rand(200, 255), mt_rand(200, 255));
$jpeg_quality = 90;
?>