|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-08-13 15:04 UTC] shane
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 19:00:01 2025 UTC |
Hello! I'm using mSQL 2.01 Patch Level B under NT. This script: <? dl("msql2.dll"); $cid = msql_connect("localhost"); msql_selectdb("test", $cid); $dtbl = msql_query("select * from test1", $cid); echo "Rows = ".msql_num_rows($dtbl)."\n"; while($row = msql_fetch_row($dtbl)) echo $row[0].":".$row[1].":".$row[2]."\n"; msql_close($cid); ?> crashes PHP at exit (after loop, which shows num_rows and rows itself correctly). After commenting 'msql_query' error goes away. /doka