I would like to write a PHP function that calls another function
Page 1. User selects item from drop down.
(I then post to the same page.)
Page 1. (I have a query on the page that's based off of which item is selected) (In this case I'm returning the lat and long of the item.)
$latitude = $row_farms['lat']; $longitude = $row_farms['long'];
THEN
(on the same page - I'm trying to run another query on another table using the previous queried data)
I hope this makes sense.
thanks.