0
I need a brief explanation about arrays in php I’ve been searching and without success.
For example if I try something like where I’m getting the based schedules echo does not work I’m also working with ajax
<?php
$count=0;
while ($dados = mysql_fetch_array($result){
$count=$count+1;
$hora= $dados['horarioHora'];
}
}echo $hora[$count];
?>
I could not understand what echo should return?
– rray
The last hour that this in the database I already edited my code I hope that now is easier
– Tiago Coelho