salve a tutti e grazie anticipate io ho un database così mysql
Codice:
id int(11) No auto_increment
testo text Sì NULL
data date Sì NULL
e la parte di codice che stampa i commenti così
Codice PHP:
mysql_connect($server,$nomeutente,$password);
mysql_select_db($database);
if($richiesta = mysql_query('SELECT testo FROM commenti')){
}
echo '<table width=100% border=1px>';
while ($testovisualizzato = mysql_fetch_array($richiesta)){
echo '<tr>';
echo '<td>Data di inserimento:</td>';
echo '</tr>';
echo '<tr>';
echo '<td>Commento:<br />';
echo '<p>' . $testovisualizzato['testo'] . '</p></td>';
echo '</tr>';
}
echo '</table>';
come dovrei fare per stampare la data di ogni commento;e come per stampare i commenti dal piu recente al meno
lo so che può essere un po complicato grazie mille anticipate