-2
I have the following call to a function:
$exitente = $membrosDao->pesquisaMembrosNasFuncoes( $_POST[ "idMembro" ] );
That for the requests below
print "<pre>";
print count($existente)."<br />";
print_r($exitente);
print "</pre>";
Give me the following result :
0
Array
(
[0] => Array
(
[idMembro] => 2
[nomeTabela] => pastores
)
)
Where am I missing? If the array
has 1 return because the count
is returning 0?
thanks. Lack of attention.
– Carlos Rocha