im a bit of a noobie, so sorry if this is insultingly simple...
i have something like:
$query= "SELECT......";
$results= mysql_db_query ($db , $query, $connection);
while ($Row = mysql_fetch_array ($results))
{
DO SOME STUFF
}
echo $Row[1] ;
seems that $Row[1] is empty because it is outside of the function. what can i do to pass, or enable the array beyond the scope of the function?
thanks!