Basically I want to call these variables at other places in the document, but I am not sure what the easiest way to do this would be. For example in my specific case, my query is this:
$query = "SELECT report,";
$query.= "GROUP_CONCAT(DISTINCT analyst) AS analysts, ";
$query.= "GROUP_CONCAT(DISTINCT region) AS regions, ";
$query.= "GROUP_CONCAT(DISTINCT country) AS countries, ";
$query.= "GROUP_CONCAT(DISTINCT topic) AS topics, ";
$query.= "GROUP_CONCAT(DISTINCT date) AS dates, ";
$query.= "GROUP_CONCAT(DISTINCT province) AS provinces ";
$query.= "FROM reports GROUP BY report ORDER BY docID DESC ";
$result = mysql_query($query);
while($row=mysql_fetch_assoc($result)) { yada yada yada }
I would like to have each individual $row save as a unique array where I can call it someplace else in the document, in my case, I am trying to call them as default values for some form inputs. I can think of several ways to do this, but they all look quite involved, adding some nested for statements, and incrementing i...
Any ideas?