Файл: sellcionout.php
Строк: 19
<?php
include_once"files/zagreg.php";
include_once("files/header.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{
$qi = mysql_query("SELECT * from `sellcoin` WHERE `coin0`='".$log."' ");
while($row=mysql_fetch_array($qi))
mysql_query("DELETE FROM `sellcoin` WHERE `coin0`='".$log."'");
echo"<small>Вы отменили продажу</small>";
}
include_once"files/down.php";
?>