Do I need to create two mySQL connections for this?
PHP Code:
$db = mysql_connect($server,$username,$pass);
$query = "SELECT * FROM test";
$results = mysql_query($query);
while ($row = mysql_fetch_array($results) {
$query = "SELECT * FROM test2";
$results = mysql_query($query);
}
or will this bomb out?