0
$sql = "SELECT * FROM pagamentos WHERE status = 0";
while($aux = mysql_fetch_row($sql)) {
echo '<td>'. $aux['nome_cliente'] .'</td>';
}
0
$sql = "SELECT * FROM pagamentos WHERE status = 0";
while($aux = mysql_fetch_row($sql)) {
echo '<td>'. $aux['nome_cliente'] .'</td>';
}
Browser other questions tagged php mysql sql select where
You are not signed in. Login or sign up in order to post.
already changed status to 1 in Where?
– tvdias
$sql = "SELECT * FROM payments WHERE status = 1";
– TigerTV.ru
I got it right, vlw
– Marcus Vinicius