Quote:
Originally Posted by Przemoo
what do u mean exactly ? could u change that for me please ?
|
The do... while loop is below... not sure if it will help personally but this is how you do it.
PHP Code:
do
{
$x++;
$gracz = $row["player_username"];
$admin = $row["admin_username"];
$data = $row["screenshot_time"];
$mapa = $row["map"];
$ip = $row["player_authid"];
$data = date("H:i:s d.m.Y",$data);
/*
$template->assign_block_vars('screeny', array(
'ID' => $x+$start,
'GRACZ' => $gracz,
'ADMIN' => $admin,
'DATA' => $data,
'MAPA' => $mapa,
'IP' => $ip)
);*/
} while( $row = $db->fetch_array($sql) ) ;