|
include 'library/config.php';
include 'library/opendb.php';
$query='SELECT id, nome, data FROM utenti ORDER BY id DESC LIMIT 1 ';
$answer=mysql_query($query) or die("Errore nella query".mysql_error());
while($scheda=mysql_fetch_array($answer))
{
?>
Ultimo commento scritto da print"$scheda[nome]"; ?> il print"$scheda[data]"; }?>
|