Файл: editmag.php
Строк: 27
<?php
include_once("files/zag.php");
include_once("files/ini.php");
$polz=mysql_query("SELECT * FROM `users` WHERE `udata0`='$log' AND `udata1`='$pas' LIMIT 1");
if(mysql_num_rows($polz)==0){
header ("Location: index.php?error");
echo'<div class="p">Ошибка! Пользователь с таким логином и паролем не зарегистрирован, или пароль/логин неверен! <a href="index.php">На главную</a><br>';exit;
}else{
switch(@$go) {
default:
echo"<u>Нажмите на [DEL] возле магии чтобы удалить её</u><br>* Удалённая магия не возвращается!
<br><br>";
$arr = mysql_query("SELECT * from `mag` WHERE `mag10`='$log' ");
$qi = mysql_query("SELECT * from `mag` WHERE `mag10`='$log'");
if (mysql_affected_rows()==0)
{
echo "Магии нет";
}
else
{
while($rows=mysql_fetch_array($qi))
{
$startan = $_GET['startan'];
echo ' <u>'.$rows[mag7].'</u> '.$rows[mag0].' урона ('.$rows[mag1].' MP) <a href="editmag.php?&go=del&id='.$rows[id].'">[DEL]</a><br/>';
}
}
break;
case 'complete':
$file = @file("data/userquest/$log.dat");
$total = count($file);
for ($i = 0; $i < $total; $i++){
$data = explode("||",$file[$i]);
if($data[2]=="completeok"){
$data_0[]=$data[0];
}}
if(empty($data_0)){echo"<small>Нет завершенных квестов.</small>"; include_once"files/down.php"; exit;}
foreach($data_0 as $k=>$v)
{
$dat_screen[]="<small>$data_0[$k] <small><b><br/>";
}
$total = count($dat_screen);
if (empty($_GET['start'])) $start = 0;
else $start = $_GET['start'];
if ($total < $start + 10){ $end = $total; }
else {$end = $start + 10; }
for ($i = $start; $i < $end; $i++){
echo"$dat_screen[$i]";
}
if ($start !== 0) {echo '<small><a href="userquest.php?start='.($start - 10).'&log='.$log.'&pas='.$pas.'&go=active">Назад</a> </small>';}
if ($total > $start + 10) {echo '<small> <a href="userquest.php?start='.($start + 10).'&log='.$log.'&pas='.$pas.'&go=active">Далее</a></small>';}
break;
case 'del':
$qi = mysql_query("SELECT * from `mag` WHERE `mag10`='".$log."' and `id`='".$id."' ");
if (mysql_affected_rows()==0)
{
echo "Магия не существует!";
}
else
{
while($rowi=mysql_fetch_array($qi))
{
mysql_query("DELETE FROM mag WHERE `id`='".$id."'") or die(mysql_error());
echo 'Сообщения успешно удалено';
}}
echo"<small><a href="editmag.php?">Магия удалена.</a></small>";
break;
}}
include_once"files/down.php";
?>