alright, im typing a huge functions script, and i wanna use arrays for some of my functions.
function Error($array){
global $sql;
echo $array['field'];
return TRUE;
}
when i do that it doesnt echo, meaning it wont show my field. it acts as if nothings there
i even tried doing global $sql, $array; but that didnt work either, anyone know if i can use arrays or another way or something?