|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-01-13 09:45 UTC] kalowsky@php.net
[2004-01-14 01:26 UTC] josep dot gorro at trendcomms dot es
[2004-04-08 11:06 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 13 03:00:02 2025 UTC |
Description: ------------ I'm trying to execute a query using the same ODBC connect ID that is customized by previous query in the same code. If I comment second odbc_fetch_row runs fine. With this one uncommented a Dr.Watson on server appears. Reproduce code: --------------- // $connect is the connect ID to the database previously // generated without problems $query1="SELECT F11, F12 FROM T1"; $result1=odbc_exec($connect,$query1); while(odbc_fetch_row($result1)) { $query2="SELECT F21, F22 FROM T2"; $result2=odbc_exec($connect,$query2); while(odbc_fetch_row($result2)) { // HERE IS THE ERROR do_anything; } } Actual result: -------------- In server appears a Dr.Watson error (GPF) and in Apache's error log a line: Premature end of script headers: c:/php/php.exe