ryghar Posted March 6, 2014 Share Posted March 6, 2014 I have this code to query a odbc database and then display a formated number. I try to isolate the problem with this. Tha fact is that if a run it I get ERR_EMPTY_RESPONSE in Chrome. In IE works ok. If I comment the line that said "Line 1" works ok in Chrome and if I comment "Line 2" also works..... Whats going on????? <?php $odbcName='xxxxx'; $conn=odbc_connect($odbcName,'user','pass'); $sql="select * from abc"; echo $sql; $rs=odbc_exec($conn,$sql); $somefield=odbc_result($rs,"somefield"); //Line 1 echo number_format(0,2); //Line 2 ?> Link to comment https://forums.phpfreaks.com/topic/286743-please-help-php-59-apache-24-nosense/ Share on other sites More sharing options...
Skewled Posted March 7, 2014 Share Posted March 7, 2014 https://productforums.google.com/forum/#!topic/chrome/E9OS9mS6yc8%5B1-25-false%5D Pretty good explanation here and some troubleshooting tips to resolve your issue. Link to comment https://forums.phpfreaks.com/topic/286743-please-help-php-59-apache-24-nosense/#findComment-1471722 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.