Просмотр файла includes/kcaptcha_config.php

Размер файла: 441B
  1. <?php
  2. $alphabet = "0123456789abcdefghijklmnopqrstuvwxyz";
  3. $allowed_symbols = "23456789abcdeghkmnpqsuvxyz";
  4. $fontsdir = 'fonts';
  5. $length = 5;
  6. $width = 120;
  7. $height = 60;
  8. $fluctuation_amplitude = 10;
  9. $no_spaces = true;
  10. $show_credits = false;
  11. $credits = 'abc';
  12. $foreground_color = array(mt_rand(0,100), mt_rand(0,100), mt_rand(0,100));
  13. $background_color = array(mt_rand(200,255), mt_rand(200,255), mt_rand(200,255));
  14. $jpeg_quality = 70;
  15. ?>