Prezados,
Acho que o problema foi resolvido com a versão mais atual do php. Passo os valores através de uma app Controle e exibo o resultado numa app Blank conforme código abaixo:
$p_id_linha = 13;
$p_sentido = 0;
$p_data = '2011-01-11';
$p_hora_inicio = '2011-01-11 04:05';
$p_hora_fim = '2011-01-11 23:00';
$p_intervalo = 60;
$data = mysql_query("call prcGuiasPorIntervalo (".$p_id_linha.", ".$p_sentido.", '".$p_data."', '".$p_hora_inicio."', '".$p_hora_fim."', ".$p_intervalo." )");
Print "<html><head><title>Teste de chamada de Stored Procedure em PHP</title></head><body><h1>Teste de chamada de Stored Procedure em PHP</h1>";
Print "<table border cellpadding=3>";
Print "<tr>";
Print "<th>Numero da Linha</th>";
Print "<th>Hora de Inicio</th>";
Print "<th>Hora de Termino</th>";
Print "<th>Data</th>";
Print "<th>Id. da Linha</th>";
Print "<th>Sentido</th>";
Print "<th>Numero de Viagens</th>";
Print "<th>Total de Passageiros</th></tr>";
while($info = mysql_fetch_array( $data ))
{
Print "<tr>";
Print "<td>".$info['RowNum']."</td>";
Print "<td>".$info['HoraInicio']."</td>";
Print "<td>".$info['HoraFim']."</td>";
Print "<td>".$info['Data']."</td>";
Print "<td>".$info['Idlinha']."</td>";
Print "<td>".$info['Sentido']."</td>";
Print "<td>".$info['NumViagens']."</td>";
Print "<td>".$info['TotPassageiros']."</td></tr>";
}
Print "</table>";
echo "</table>";
echo "</body></html>";