Файл: mklik.tk/buy.php
Строк: 57
<?php
include "header/config.inc.php";
include "header/function.inc.php";
include "header/header.inc.php";
include "header/connect.inc.php";
include "header/click-club.class.php";
If (!isset($_GET['log'])) define("anybody","true");
include "header/enter.inc.php";
include "header/ban.php";
@mysql_query("update `".prefix."users` set `mesto`='Смотрит купленные номера', `online`='".time()."' where `id` = '".$_USER['id']."';");
$_CONF['title']='Мои покупки';
/*
if($_GET['del']){
$result=mysql_query("DELETE FROM `".prefix."buy` WHERE id = '".intval($_GET['del'])."' AND `who`='".$_USER['login']."' LIMIT 1")or die('err');
echo'Запись удалена<br/>';
echo '»<a href="'.$_zapros.'">Вернуться</a>';
include "header/end.inc.php";
break;
}
*/
echo '<b>Мои покупки</b><br/>---<br/>';
If (!isset($_GET['page']) || !is_numeric($_GET['page'])) $page=1; else { $page=$_GET['page']; (int)$page;}
$result=@mysql_query("SELECT * FROM `".prefix."logi_buy` where `who`='".$_USER['login']."' && `status`='1' ORDER by `ts` desc LIMIT ".(($page-1)*num_best_on_page).",".(num_best_on_page+1));
If (!$result){
echo 'Oшибкa зaпpoca к бд...';
break;
}
$next=false;
$num=mysql_num_rows($result);
If ($num>0){
If ($num<=num_best_on_page) $read=$num; else {
$read=num_best_on_page;
$next=true;
}
for ($i=0;$i<$read;$i++){
$id=mysql_result($result,$i,'id');
echo "".date('G:i:s d.m.Y',mysql_result($result,$i,'ts'))."</br>
icq: ".mysql_result($result,$i,'num')." </br>
pass: ".mysql_result($result,$i,'pass')."</br>
[".mysql_result($result,$i,'cena')."кр.] </br>-----</br>";
##<a href='".$_zapros."del=".mysql_result($result,$i,'id')."'>Del</a>
}
echo '<br/>';
} else echo 'Покупок не было<br/>---<br/>';
If ($page>1) echo '<a href="'.$_zapros.'&page='.($page-1).'">';
echo 'нaзaд';
If ($page>1) echo '</a>';
echo ' | ';
If ($next) echo '<a href="'.$_zapros.'&page='.($page+1).'">';
echo 'впepeд';
If ($next) echo '</a>';
echo '<br/>---<br/>» <a href="icqm.php'.$_zapros.'">ICQ мaгaзин</a>';
If ($_enter)$_CONF['index_page']="enter.php".$_zapros;
include "header/end.inc.php";
?>