Просмотр файла includes/adm/finance/service_all.php

Размер файла: 1.77Kb
<?php
$k=$query3;
if ($k<1) $k=1;

# Выбор списка услуг
$q3=@mysql(DBName,"SELECT * FROM `finance_service` ORDER BY `start` LIMIT ".($k-1).", 26");
$s=@mysql_num_rows($q3);

print '<table border=0 width=100% bgcolor=#70E2A0><tr bgcolor=#D8998B>'.
'<th width=25><b>№№ п/п</b></th>'.
'<th width=120><b>Услуга</b></th>'.
'<th><b>Пользователь</b></th>'.
'<th width=100><b>Дата подключения</b></th>'.
'<th width=100><b>Время списания</b></th>'.
'<th width=100><b>Дата отключения</b></th>'.
'<th width=100><b>Стоимость</b></th>'.
'<th><b>Комментарий</b></th>'.
'</tr>';

if ($s>25) {$s=25;$nextp=true;} else $nextp=false;
for ($i=0;$i<$s;$i++)
	{
	$data3=@mysql_fetch_array($q3);

	if ($col) {$color='#96BDE0';$col=false;} else {$color='#7AABD8';$col=true;}

	print '<tr bgcolor='.$color.'>';
	print '<th>'.($k+$i).'</th>';
	print '<th>&nbsp;'.$data3['service'].'</a>&nbsp;</th>';
	$q__=@mysql(DBName,"SELECT * FROM `users` WHERE `num` = '".$data3['id_user']."' LIMIT 0, 1");
	$data__=mysql_fetch_array($q__);
	print '<th>&nbsp;<a href="?'.$id.'/finance/users/'.$data3['id_user'].'">'.$data__['login'].'.'.$data__['domain'].'.ru</a>&nbsp;</th>';
	print '<th>'.date("j.m H:i ",$data3['start']).'</th>';
	print '<th>'.date("H:i ",$data3['nextpay']).'</th>';
	if ($data3['stop']==0) print '<th><font color=gray><i>не отключено</i></font></th>';
	else                       print '<th>'.date("j.m H:i ",$data3['stop']).'</th>';
	print '<th>'.sprintf ("%01.2f",$data3['price']).' у.е.</th>';
	print '<th>'.$data3['comment'].'</th>';
	print '</tr>';
	}

print '</table>';

if ($k>1) print '<b><a href="?'.$id.'/finance/service/all/'.($k-25).'">&lt;&lt;&lt;Назад</a>';
if ($nextp) print '&nbsp;<a href="?'.$id.'/finance/service/all/'.($k+25).'">Далее&gt;&gt;&gt;</a></b>';

exit;
?>