If I make a connection as follows:
$getcnnctd = @mysql_connect('this', 'that', 'bigsecret');
then select my db, then
$res = mysql_query("select * from thedb");
when finished using the db etc., am I assuming correctly that I should:
mysql_free_result($res);     to free the memory up
and
mysql_close($getcnnctd);

Thanks for your help,
Doug

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to