In my PHP code, I am retrieving some info from a SQL DB which is put into the "row" array:
... $row = mysql_fetch_array($result) ...
So that $row["name"] contains some data. I would like to use this array in another function in the same PHP script, but I'm not sure how to globally declare the array.
A sample of the code would be awesome!
Thanks for your help!