|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-01-05 13:11 UTC] derick@php.net
[2003-01-05 14:25 UTC] georg@php.net
[2003-01-05 15:11 UTC] georg@php.net
[2003-01-06 18:13 UTC] gothfather at zotteltier dot de
[2003-01-07 03:36 UTC] georg@php.net
[2003-01-07 04:37 UTC] drews at laborox dot com
[2003-01-07 05:44 UTC] gothfather at zotteltier dot de
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 11:00:01 2025 UTC |
when calling mysql_info() apache 1.3.24 terminates with an error: "The instruction at "0x100c1588" referenced memory at "0x0000000a". the memory could not be "read" [ok/debug]. M$ debug gives "100C1588 cmp byte ptr [eax+8],7" script when calling: <?php $vk = mysql_pconnect($host, $user, $pass) or die (); mysql_select_db($database, $vk) or die (); $sql = "select * from user"; $result = mysql_query($sql, $vk); if($result) { while ($row = mysql_fetch_array($result)) { echo $row[0]; } } echo mysql_info($vk); ?> regards, -Wolfgang