have i been annoying today or what?
anyways, i've created three arrays like this from a query...
$arr[] = $row_s[0];
$arr1[] = $row_s[1];
$arr2[] = $row_s[2];
"$arr" shows that things are working because i am getting correct information from this...
now, further along in the script i need to access the info in $arr2 according to a different variable $d...
should i be using array_keys for this...and if so, why might my results be giving me simple - "Array" over and over...i'm missing something here...
$text = array_keys($arr2, $d);
is there a better way to work this out?
?...v