I'm having growing pains with my mysql server (Windows).

I get a lot of "Forcing close of thread ..."
Do I need to add mysql_close() to the end of everything? I never had to
before on a Unix mysql server. Is "mysql_close($myconnection);" correct?
Is it necessary?

$myconnection = mysql_pconnect($server,$user,$pass);
 mysql_select_db($db,$myconnection);

 $news = mysql_query("SHOW TABLE STATUS FROM ".$db." LIKE '$table'");
        while ($news_story = mysql_fetch_array($news))
        {
         $table_comment = $news_story['Comment'];
        }

mysql_close($myconnection);

?>


-- 
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]

Reply via email to