Просмотр файла create.php

Размер файла: 2.07Kb
  1. <?php
  2. ############################################################
  3. #-Название: 5 SECOND LOGO #
  4. #-Версия: 2.2 #
  5. #-Автор: Клишин Сергей Алексндрович (Sirioga) #
  6. #-ICQ: 357968948 #
  7. #-E-mail: sirioga@list.ru #
  8. #-ТИП Скрипта: ПЛАТНЫЙ #
  9. ############################################################
  10. include("other/head.php");
  11.  
  12. echo "<center class=\"b\">";
  13. echo "<form action=\"download.php\" method=\"post\">";
  14. echo "Текст надписи[a-Z.]<br/><input name=\"text\" type=\"text\" value=\"\"><br/>";
  15. echo "Угол поворота [1-180]<br/><input name=\"angle\" type=\"text\" value=\"\"><br/>";
  16. echo "Размер шрифта [1-40]<br/><input name=\"size\" type=\"text\" value=\"20\"><br/>";
  17. echo "Цвет фона RGB [1-255]<br/><input name=\"bg1\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"0\"><input name=\"bg2\" size=\"3\" maxlength=\"3\" type=\"text\" value=\"0\"><input name=\"bg3\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"0\"><br/>";
  18. echo "Цвет текста RGB [1-255]<br/><input name=\"txtcolor1\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"255\"><input name=\"txtcolor2\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"255\"><input name=\"txtcolor3\" maxlength=\"3\" size=\"3\" type=\"text\" value=\"255\"><br/>";
  19.  
  20. echo"Стиль Шрифта<br/>
  21. <select name='font' class='textbox'>";
  22.  
  23. $dir = opendir ("fonts/");
  24. while ($file = readdir ($dir))
  25. {
  26. if (( $file != ".") && ($file != "..") && ($file != ".htaccess") && ($file != "index.php") && ($file != "$css.css") )
  27. { $file= str_replace(".ttf","",$file);
  28. echo "<option>$file</option>";
  29. }}
  30. echo "</select><br/>";
  31. closedir ($dir);
  32.  
  33. echo "Формат<br/><select size=\"1\" name=\"format\">
  34. <option value=\"jpeg\">JPEG</option>
  35. <option value=\"png\">PNG</option>
  36. <option value=\"wbmp\">WBMP</option>
  37. </select>";
  38.  
  39. echo "<br/><input type=\"submit\" value=\"Получить\">";
  40. echo "</form>";
  41. echo "</center>";
  42. include("other/foot.php");
  43.  
  44. ?>