|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-08-13 16:23 UTC] shane
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 09:00:02 2025 UTC |
I've writtent a short program to test msql2.0 and PHP3.01 before starting my developpement.. Here's the source <? dl ("msql2.dll"); $result=msql ("docnetia", "select i_numero,c_intitule from t_documents where i_numero<5 order by i_numero"); $num = msql_numrows($result); $i=0; while($i<$num) { echo msql_result($result,$i,"i_numero"); echo ": "; echo msql_result($result,$i,"c_intitule"); echo "<br>\n"; $i++; } exit; ?> After executing this script from a command.com, php hangs with a GPF. Notice the output seems to be OK, evry data request is effectively processed. I seems to hang just after execution, somewhere in the "quit code". I've tried it with a static load of msq2.dll and with a dynamic load in my source code. If somebody has got any idea, please mail me back at jpcivade@cge.net