When selecting a database using mysql_select_db(), can you use the function more than once and still retain the previous database selection? For example, can I do:
mysql_select_db('abc');
mysql_select_db('def');
Would that select both databases or would it select abc then select def?


Reply With Quote




