Просмотр файла magazin/admin/add_nomer.php

Размер файла: 3.6Kb
<?
////////////////////
//By Chiksan 2oo9///
//[email protected]//
////////////////////
include '../connect.php';
include_once 'head.php';
session_start();
if (!isset($_SESSION['login']) || !isset($_SESSION['password']))
{exit('Упс...Доступ Закрыт.<br><a href="login.php">Сделать Вход!</a>');}
if (isset($_GET['icq'])){$icq =intval($_GET['icq']);
if ($icq == '') {unset($icq);echo 'Не введен номер icq.<a href="javascript:history.back(1)">Вернуться</a>';exit();}}
if (isset($_GET['cid'])){$cid =intval($_GET['cid']);
if ($cid == '') {unset($cid);echo 'Не введена категория номера.<a href="javascript:history.back(1)">Вернуться</a>';exit();}}
if (isset($_GET['cena'])){$cena =intval($_GET['cena']);
if ($cena == '') {unset($cena);echo 'Не введена стоимость номера.<a href="javascript:history.back(1)">Вернуться</a>';exit();}}
if (isset($_GET['status'])){$status =htmlspecialchars(stripslashes(trim($_GET['status'])));if ($status == ''){unset($status);echo 'Не введен статус номера.<a href="javascript:history.back(1)">Вернуться</a>';exit();}}
if (isset($_GET['author'])){$author =htmlspecialchars(stripslashes(trim($_GET['author'])));if ($author == ''){unset($author);echo 'Не введен автор.<a href="javascript:history.back(1)">Вернуться</a>';exit();}}
if (isset($_GET['date'])){$date = $_GET['date'];
if ($date == '') {unset($date);echo 'Не введена дата добавления.<a href="javascript:history.back(1)">Вернуться</a>';exit();}}
if (isset($_GET['opis'])){$opis =htmlspecialchars(stripslashes(trim($_GET['opis'])));
if ($opis == '') {unset($opis);echo 'Не введено описание.<a href="javascript:history.back(1)">Вернуться</a>';exit();}}
//
if (($cid==5) and strlen($icq)!=5 or ($cid==6) and strlen($icq)!=6 or ($cid==7) and strlen($icq)!=7 or ($cid==8) and strlen($icq)!=8 or ($cid==9) and strlen($icq)!=9) 
{exit("Введеный Вами номер не соответсвует введенной категории!<a href='javascript:history.back(1)'> Назад </a>\n");}
//
if ((strlen($opis)<3) or  strlen($author)<3){exit("Слишком короткое описание или автор!<a href='javascript:history.back(1)'> Назад </a>\n");}
$author=str_replace("$","$$",$author);
$status=str_replace("$","$$",$status);
$opis=str_replace("$","$$",$opis);
//
if (isset($cid) && isset($icq) && isset($cena) && isset($status) && isset($author)&& isset($date)&& isset($opis))
{
if ($_GET['cid']==5)
{
$result = mysql_query ("INSERT INTO 5dig (cid,icq,cena,status,author,date,opis) VALUES ('$cid','$icq', '$cena','$status','$author','$date','$opis')");
}
if ($_GET['cid']==6)
{
$result = mysql_query ("INSERT INTO 6dig (cid,icq,cena,status,author,date,opis) VALUES ('$cid','$icq', '$cena','$status','$author','$date','$opis')");
}
if ($_GET['cid']==7)
{
$result = mysql_query ("INSERT INTO 7dig (cid,icq,cena,status,author,date,opis) VALUES ('$cid','$icq', '$cena','$status','$author','$date','$opis')");
}
if ($_GET['cid']==8)
{
$result = mysql_query ("INSERT INTO 8dig (cid,icq,cena,status,author,date,opis) VALUES ('$cid','$icq', '$cena','$status','$author','$date','$opis')");
}
if ($_GET['cid']==9)
{
$result = mysql_query ("INSERT INTO 9dig (cid,icq,cena,status,author,date,opis) VALUES ('$cid','$icq', '$cena','$status','$author','$date','$opis')");
}
if ($result == true) {echo "Номер Добавлен.";}
else {
echo "Номер не добавлен.";
}
}
include 'foot.php';
?>