ID: 14549 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Reproducible crash Operating System: Windows 2000 PHP Version: 4.1.0 New Comment:
heh :) sorry finger-to-keyboard error ... :) This Warning message is visible since PHP4.1.0 not 4.0.1 ... Previous Comments: ------------------------------------------------------------------------ [2001-12-16 13:18:41] [EMAIL PROTECTED] What I do wrong if this easy error-less script <? $db = MYSQL_PCONNECT("localhost","root","") OR DIE(""); mysql_select_db("chat",$db) or DIE(""); $ares=mysql_query("select * from c_users"); echo "CHAT room - online users: "; if (mysql_num_rows($ares)==0) echo "nobody"; while ($arow=mysql_fetch_array($ares)) { echo $arow[username]; } ?> produce this output with Warning message ... CHAT room - online users: nobody Warning: Unknown persistent list entry type in module shutdown (11) in Unknown on line 0 This warning I see if I enable the option error_reporting = E_ALL & ~E_NOTICE in php.ini. This message is visible since PHP4.0.1 When I downgrade to PHP4.0.6, the message isn't there. ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=14549&edit=1 -- PHP Development 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]