Ciao a tutti, ho questo codice:
while ($riga = mysql_fetch_array($res)) {
$html_res .= '<tr>';
$html_res .= '<td>[img]images/prodotti/'.$riga[[/img]</td>';
$html_res .= '<td> '.$riga["famiglia"].'</td>';
****qui****
$html_res .= '<td>[img]images/prodotti/'.$riga[[/img]</td>';
$html_res .= '<td> '.$riga["famiglia"].'</td>';
$html_res .= '</tr>';
}
Il fatto e' che dove c'e' scritto ****qui**** io vorrei mettere un'istruzione per passare al record successivo, in pratica quella che in ASP e' rs.movenext
In php com'e'?
Grazie