Hi All,
Just a quick question here:
If I choose the object oriented style to interact with my database, ie...
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
And I then use $mysqli->close();
to close the connection at some point...
Can I reopen that connection by simply initiating another query $mysqli->query();
, or do I have to instantiate a new MYSQLI object?