Hi
if I have an array $g
Can I pass it to a function like
ChkArr($g)?
-------CODE---------- $e=Array(); echo(is_array($e)) ... this gives true ChkArr($e);
function ChkArr($e){
echo(is_array($e)) ... this gives false
}
Anybody knows why?
On my system, your example function returns "true".
But you really should declare or define your function before calling it.
Geoff