I need a brief explanation about arrays in php I've been researching and to no avail.
For example if you try something like this where I'm looking for the timetables on the database, the 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];
?>