Hi,
I have a situation where I may have to switch the database while I am
looping a resultset.  If I do a mysql_select_db within the middle of that,
will that change the initial resultset, e.g


while ($row = mysql_fetch_array($result)) {

        mysql_select_db($anotherdb);
        //do stuff
        mysql_select_db($formerdb);
}


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to