|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-12-16 13:26 UTC] webmaster at czechmedianet dot cz
[2001-12-17 11:16 UTC] sander@php.net
[2001-12-17 11:23 UTC] webmaster at czechmedianet dot cz
[2001-12-17 11:29 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 12:00:01 2025 UTC |
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.