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

Размер файла: 1.98Kb
<?php
############################################################
#-Название: 5 SECOND LOGO                                  #
#-Версия: 2.4beta                                          #
#-Автор: Клишин Сергей Алексндрович (Sirioga, Siriojka)    #
#-ICQ: 357968948                                           #
#-E-mail: [email protected]                                  #
#-ТИП Скрипта: БЕСПЛАТНЫЙ                                  #
############################################################
include("other/head.php");

echo "<center class=\"b\">";
echo "<form action=\"download.php\" method=\"post\">";
echo "Текст надписи[a-Z.]<br/><input name=\"text\" type=\"text\" value=\"\"><br/>";
echo "Угол поворота [1-180]<br/><input name=\"angle\" type=\"text\" value=\"\"><br/>";
echo "Размер шрифта [1-40]<br/><input name=\"size\" type=\"text\" value=\"20\"><br/>";
echo "Цвет фона<br/><input name=\"bg\" type=\"text\" value=\"00cc00\"><br/>";
echo "Прозрачность (фон)[0-127]<br/>(только PNG)<br/><input name=\"b_alpha\" maxlength=\"3\" type=\"text\" value=\"0\"><br/>";
echo "Цвет текста<br/><input name=\"txtcolor\" type=\"\" value=\"000000\"><br/>";

echo"Стиль Шрифта<br/>
     <select name='font' class='textbox'>";

$dir = opendir ("fonts/");
while ($file = readdir ($dir))
 {
    if (( $file != ".") && ($file != "..") && ($file != ".htaccess") && ($file != "index.php")  && ($file != "$css.css")  )
    { $file= str_replace(".ttf","",$file);
echo "<option>$file</option>";
 }}
echo "</select><br/>";
closedir ($dir);

echo "Формат<br/><select size=\"1\" name=\"format\">
<option value=\"jpeg\">JPEG</option>
<option value=\"png\">PNG</option>
<option value=\"gif\">GIF</option>
</select>";

echo "<br/><input type=\"submit\" value=\"Получить\">";
echo "</form>";
echo "</center>";
include("other/foot.php");

?>