|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-10-01 13:52 UTC] hholzgra@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 12:00:02 2025 UTC |
<?php $queryString = "SELECT * FROM MUNTI ORDER BY IN_HARTA ASC"; $dbConnect = odbc_connect("MUNTIDB", "", "", SQL_CUR_USE_ODBC); if($dbConnect) { $muntidb = odbc_exec($dbConnect, $queryString); while($row = odbc_fetch_row($muntidb)) { $idZona = odbc_result($muntidb, "IN_HARTA"); $queryListString = "SELECT ZONEDEF.X,ZONEDEF.Y FROM ZONEDEF WHERE ZONEDEF.ID_ZONA = $idZona"; $zonadb = odbc_exec($dbConnect, $queryListString); print "<area shape=\"poly\" coords=\""; $bVirgula = 0; $fx = 0; $fy = 0; while($row2 = odbc_fetch_row($zonadb)) { $x = odbc_result($zonadb, 1); $y = odbc_result($zonadb, 2); if($bVirgula) { print ","; $fx = $x; $fy = $y; //} print "$x,$y"; $bVirgula = 1; } print "$fx,$fy"; print "\" href=\"javascript:showMountain($idZona)\" target=\"tr_navigator\" title=\"" . odbc_result($muntidb, "NAME") ."\">"; } odbc_close($dbConnect); } ?> Seems like the missing closing bracket for the if($bVirgula) block is causing an Access Violation error in the NTDLL.DLL at adress 0x77F6754B. The call stack was NTDLL.DLL 0x77F6754B PHP.EXE 0x0041E652 PHP.EXE 0x00436774