When I do this:
$link = @mysql_pconnect("localhost", $this->db_user_id, $this->db_passwd);
And I do this:
if(!($result = mysql_query($querystr))) { ...
Then I do this:
$result = DoQuery($q);
What objects are there to close? In ASP we issue code like this to close
these objects:
rs.close
set rs = nothing
db.close
set db = nothing
(where rs is the recordset and db is the database)
Thank You!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]