define('NTOP', 1);
$title = 'Управление рекламой';
require_once('../system/connect.php');
require_once('../system/core.php');
require_once('../system/function.php');
require_once('../str/head.php');
reg();
level(2);
switch( $_GET['mod'] )
{
default:
echo '
Управление рекламой
Добавить ссылку (
' . mysql_num_rows( mysql_query( "select * from `top_rekl` where `in` = '1'" ) ) . '/
' . mysql_num_rows( mysql_query( "select * from `top_rekl` where `in` = '2'" ) ) . ')
Добавить банер (
' . mysql_num_rows( mysql_query( "select * from `top_rekl` where `in` = '3'" ) ) . ')
';
break;
case 'link':
if(isset($_POST['ok']) and !empty( $_POST['url'] ) and !empty( $_POST['name'] ) )
{
$url = trim( mysql_real_escape_string( $_POST['url'] ) );
$name = trim( mysql_real_escape_string( $_POST['name'] ) );
$in = intval( $_POST['in'] );
mysql_query( "insert into `top_rekl` set `id` = '' , `url` = '$url' , `name` = '$name' , `in` = '$in'" ) or die( mysql_error() );
echo 'Ссылка ' . $url . ' успешно добавлена!
';
}
echo '
';
break;
case 'bann':
if(isset($_POST['ok']) and !empty( $_POST['url'] ) and !empty( $_POST['name'] ) and !empty( $_POST['img'] ) )
{
$url = trim( mysql_real_escape_string( $_POST['url'] ) );
$name = trim( mysql_real_escape_string( $_POST['name'] ) );
$img = trim( mysql_real_escape_string( $_POST['img'] ) );
mysql_query( "insert into `top_rekl` set `id` = '' , `url` = '$url' , `name` = '$name' , `img` = '$img' , `in` = '3'" ) or die( mysql_error() );
echo 'Банер ' . $name . ' успешно добавлен!
';
unset( $_SESSION['rand'] );
}
echo '
';
break;
case 'editl':
if(isset($_POST['ok']) and !empty( $_POST['url'] ) and !empty( $_POST['name'] ) )
{
$url = mysql_real_escape_string( $_POST['url'] );
$name = trim( mysql_real_escape_string( $_POST['name'] ) );
$id = intval( $_POST['id'] );
@mysql_query( "update `top_rekl` set `url` = '$url' , `name` = '$name' where `id` = '$id'" );
echo 'Ссылка ' . $url . ' успешно измененa!
';
}
$id = (int)$_GET['id'];
if( empty( $id ) )
{
echo 'Верхние ссылки
';
if( mysql_num_rows( mysql_query( "select * from `top_rekl` where `in` = '1'" ) ) == 0 )
{
echo 'Ссылок нет...
';
}
else
{
$query = mysql_query( "select * from `top_rekl` where `in` = '1'" );
while( $fetch = mysql_fetch_array( $query ) )
{
echo 'URL: ' . htmlspecialchars( $fetch['url'] ) . ' Название: ' . htmlspecialchars( $fetch['name'] ) . '
[DELL][EDIT]
';
}
}
echo 'Нижние ссылки
';
if( mysql_num_rows( mysql_query( "select * from `top_rekl` where `in` = '2'" ) ) == 0 )
{
echo 'Ссылок нет...
';
}
else
{
$query = mysql_query( "select * from `top_rekl` where `in` = '2'" );
while( $fetch = mysql_fetch_array( $query ) )
{
echo 'URL: ' . htmlspecialchars( $fetch['url'] ) . ' Название: ' . htmlspecialchars( $fetch['name'] ) . '
[DELL][EDIT]
';
}
}
}
else
{
if( mysql_num_rows( mysql_query( "select * from `top_rekl` where `id` = '$id' and `in` != '3'" ) ) == 0 )
{
echo 'Ссылка не найдена...
';
}
else
{
$fetch = mysql_fetch_array( mysql_query( "select * from `top_rekl` where `id` = '$id'" ) );
echo '
';
}
}
break;
case 'editb':
if(isset($_POST['ok']) and !empty( $_POST['url'] ) and !empty( $_POST['name'] ) )
{
$url = mysql_real_escape_string( $_POST['url'] );
$name = trim( mysql_real_escape_string( $_POST['name'] ) );
$img = trim( mysql_real_escape_string( $_POST['img'] ) );
$id = intval( $_POST['id'] );
@mysql_query( "update `top_rekl` set `url` = '$url' , `name` = '$name' , `img` = '$img' where `id` = '$id'" );
echo 'Банер ' . $name . ' успешно изменен!
';
}
$id = (int)$_GET['id'];
if( empty( $id ) )
{
echo 'Банеры и счетчики
';
if( mysql_num_rows( mysql_query( "select * from `top_rekl` where `in` = '3'" ) ) == 0 )
{
echo 'Банеров нет...
';
}
else
{
$query = mysql_query( "select * from `top_rekl` where `in` = '3'" );
while( $fetch = mysql_fetch_array( $query ) )
{
echo 'URL: ' . htmlspecialchars( $fetch['url'] ) . ' URL картинки: ' . $fetch['img'] . ' Подпись: ' . htmlspecialchars( $fetch['name'] ) . '
[DELL][EDIT]
';
}
}
}
else
{
if( mysql_num_rows( mysql_query( "select * from `top_rekl` where `id` = '$id' and `in` = '3'" ) ) == 0 )
{
echo 'Банер не найден...
';
}
else
{
$fetch = mysql_fetch_array( mysql_query( "select * from `top_rekl` where `id` = '$id'" ) );
echo '
';
}
}
break;
case 'dell':
if( empty( $_GET['id'] ) or !ctype_digit( $_GET['id'] ) )
{
echo 'Unknow id...
';
}
else
{
$id = $_GET['id'];
$fetch = mysql_fetch_array( mysql_query( "select * from `top_rekl` where `id` = '$id'" ) );
if( empty( $fetch ) )
{
echo 'Ссылка не найдена...
';
}
else
{
$name = $fetch['name'];
if( empty( $_GET['agree'] ) )
{
echo 'Вы действительно хотите удалить ' . $name . ' ?
Да | Нет
';
}
else
{
@mysql_query( "delete from `top_rekl` where `id` = '$id'" );
echo $name . ' Успешно удаленo!
';
}
}
}
break;
}
echo 'Управление рекламой
';
//На главную
require_once('../str/foot.php');
?>