Ricavare dati da mysql in modo DESC

Jonathan

Nuovo Utente
15 Set 2006
25
0
0
Salve ragazzi 0:)

ho una domanda per voi :book:

vi incollo questo codice:
$prendicomm = "SELECT * FROM commenti WHERE commento_ricetta = '$speed' ORDER BY commento_data DESC LIMIT 0, 11";

$startcomm = mysql_query($prendicomm) or die(mysql_error());

$row = mysql_fetch_array($startcomm);

if($row > 0)
{
echo "<br><br><hr color='#cdbd91' size='1'>";
echo "<font style='font-size: 13px; font-family: verdana, arial, helvetica, sans-serif; color:#847840'>COMMENTI:</font><br><br>";
while ($row = mysql_fetch_array($startcomm))
{
extract($row);

$datacomm = $row['commento_data'];
$myDatacomm = date("d/m/Y", strtotime($datacomm));

echo "<font style='font-size: 12px; font-family: verdana, arial, helvetica, sans-serif; color:#847840'>Commentata:</font><font class='testosito'> il ";
echo $myDatacomm;
echo " alle ore " . $row['commento_ora'] . " da </font>";
echo "<a href='/profili/utente.php?user=$speed' class='cxpage'>" . $row['commento_nickname'] . "</a>";
echo "<br><br><font class='testosito'>";
echo substr($row['commento_testo'],0,192);
echo "...</font><br><br>";
echo "<hr>";
echo "<br>";
}
}

è tutto ok solo che vorrei che nei risultati dei commenti che anche la variabile commento_ora venisse in modo DESC, ma ho messo solo commento_data quando prendo i dati nel database, come posso risolvere sta cosa? spero di essere stato chiaro.
Ciao ragazzi e grazie!!!!

:ilpirata:
 
Prova così:

PHP:
$prendicomm = "SELECT * FROM commenti WHERE commento_ricetta = '$speed' ORDER BY commento_data DESC, commento_ora DESC LIMIT 0, 11";
 

Discussioni simili