Hi,
My script is acting strange. After a foreach loop, the script stops. I don't have any error, any warning or notice from Apache. This is the code:
foreach($clientFact as $line)
{
$cliTemp1[] = $line["idcliente"];
echo "qwerty";
}
echo "123";
If I add an "echo(qwerty")" inside the loop, it will show the "qwerty" but, right after the end of the loop it will not do anything.
Am I missing something?!
Thanks