Can I get a unique identifier using the mysql_connect command by connecting to the same host, same user but different database during the life time of one script?
I currently do a
$conn_id = mysql_connect ($host_name, $user_name, $password);
Then call a,
mysql_select_db ($db_name,$conn_id)
But I always get the same identifier.