|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-07-27 20:43 UTC] mfischer@php.net
[2001-07-30 02:59 UTC] etm at wkv dot at
[2001-07-30 05:56 UTC] sniper@php.net
[2001-07-30 07:38 UTC] etm at wkv dot at
[2001-07-30 08:26 UTC] mfischer@php.net
[2002-06-18 18:37 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 16 21:00:02 2025 UTC |
$eLink = mysql_connect(...); . . . class test { function einTest() { $eLink = mysql_connect(); mysql_close($eLink); } } $aVar = new test(); $aVar->einTest(); mysql_query("...",$eLink); -----> not valid mysql ressource After einTest() it looks like it closes the outside mysql_connection ($eLink) no matter how the connection var in einTest() is named! Serious stuff!