0
Guys, next I have this appointment here
$consultapedidos = mysql_query("SELECT * FROM pedidos WHERE produzido = '0'");
if(mysql_num_rows($consultapedidos)==true){
while($lnped = mysql_fetch_array($consultapedidos))
}
when it returns true I want it to list the results it found, but if it returns false, I want it to update the page every 5 seconds until it finds a record. Does anyone have any idea how I can do that?
Thank you very much, hadn’t thought of this logica yet kkk, it worked correctly.
– Alfredo Lima