The old PHP function mysql_connect
had the new_link
parameter that allowed connection to several different banks in the same script
:
Example:
$connect = mysql_connect($host,$user,$pass,$new_link);
How does this work in mysqli? Does it have this parameter? Or do not you?
$mysqli = new mysqli($host, $user, $pass, $database);
I searched the documentation but could not find it.