Posts by Marcus Vinicius • 1 point
1 post
-
0
votes0
answers28
viewsQ: I want to make a select in my database to see all the results that are: status = 1
$sql = "SELECT * FROM pagamentos WHERE status = 0"; while($aux = mysql_fetch_row($sql)) { echo '<td>'. $aux['nome_cliente'] .'</td>'; } …