Просмотр файла scripts/logo/download.php

Размер файла: 3.16Kb
<?php
############################################################
#-Название: 5 SECOND LOGO                                  #
#-Версия: 2.2                                              #
#-Автор: Клишин Сергей Алексндрович (Sirioga)              #
#-ICQ: 357968948                                           #
#-E-mail: [email protected]                                  #
#-ТИП Скрипта: ПЛАТНЫЙ                                     #
############################################################

$p_font=htmlspecialchars($_POST['font']);             # Шрифт
$p_text=htmlspecialchars($_POST['text']);             # Текст
$p_angle=htmlspecialchars($_POST['angle']);           # Угол наклона
$p_bg1=htmlspecialchars($_POST['bg1']);               # Фон Rgb
$p_bg2=htmlspecialchars($_POST['bg2']);               # Фон rGb
$p_bg3=htmlspecialchars($_POST['bg3']);               # Фон rgB
$p_txtcolor1=htmlspecialchars($_POST['txtcolor1']);   # Цет теста Rgb
$p_txtcolor2=htmlspecialchars($_POST['txtcolor2']);   # Цет теста rGb
$p_txtcolor3=htmlspecialchars($_POST['txtcolor3']);   # Цет теста rgB
$p_size=htmlspecialchars($_POST['size']);             # Размер шрифта
$p_format=htmlspecialchars($_POST['format']);         # Формат изображения

if (ereg("[A-Za-zа-яА-Я,$,>,<,',`,;,/,\,&,#,,,.,:,*,@,!,%,^,(,)]","$p_bg1$p_bg2$p_bg3$p_txtcolor1$p_txtcolor2$p_txtcolor3$p_angle$p_size"))
{
include "other/head.php";
echo "<center class=\"b\">Запрещенные символы!!!<br/><a href=\"create.php\">Назад</a></center>";
include "other/foot.php";
exit;
}

if (ereg("[а-яА-Я,$,>,<,',`,;,/,\,&,#,,,:,*,@,!,%,^,(,)]","$p_text"))
{
include "other/head.php";
echo "<center class=\"b\">Надпись только латиницей!!!<br/>
Или запрещенные символы!<br/><a href=\"create.php\">Назад</a></center>";
include "other/foot.php";
exit;
}
if ($p_font==""){ include "other/head.php"; echo "<center class=\"b\">Нет шрифта!!!<br/><a href=\"create.php\">Назад</a></center>"; include "other/foot.php"; exit; }
if ($p_size>40){ include "other/head.php"; echo "<center class=\"b\">Слишком большой размер!<br/><a href=\"create.php\">Назад</a></center>"; include "other/foot.php"; exit; }
if ($p_angle==""){$p_angle=0;} # Если поворот не задан, задать 0
if ($p_angle>180){include "other/head.php"; echo "<center class=\"b\">Слишком большой угол поворота<br/><a href=\"create.php\">Назад</a></center>"; include "other/foot.php"; exit;}
if ($p_angle<-180){include "other/head.php"; echo "<center class=\"b\">Угол поворота ушол в -90!!!<br/><a href=\"create.php\">Назад</a></center>"; include "other/foot.php"; exit;}
if ($p_text==""){ include "other/head.php"; echo "<center class=\"b\">Не введён текст!<br/><a href=\"create.php\">Назад</a></center>"; include "other/foot.php"; exit; }
include("other/head.php");

$image="image.php?text=$p_text&amp;angle=$p_angle&amp;size=$p_size&amp;bg1=$p_bg1&amp;bg2=$p_bg2&amp;bg3=$p_bg3&amp;txtcolor1=$p_txtcolor1&amp;txtcolor2=$p_txtcolor2&amp;txtcolor3=$p_txtcolor3&amp;font=$p_font&amp;format=$p_format";
echo "<center class=\"b\"><img src=\"$image\"><br/>";
echo "<a href=\"$image\">Скачать</a><br/>";
echo "<a href=\"create.php\">Сделать еще</a></center>";

include("other/foot.php");
?>