Is it possible to retrieve elements from multiple SELECTS into PHP?
Take this one for example:
$query= mysql_query("SELECT ...; SELECT ...;")
If it is possible how can we organize the information ?
I don't think it's as simple as:
while($row = mysql_fetch_array($query))
selecthave the same columns retrieve? what are you trying to do?Unionof two selects?