ryghar Posted March 6, 2014 Share Posted March 6, 2014 (edited) 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 ?> Edited March 6, 2014 by ryghar Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.