Re: [PHP-DB] Re: What is my Mistake?

[email protected] (Jim Giner) Tue, 24 Jun 2014 13:26:16 -0400
Newsgroups php.db
Message-ID <[email protected]>
I don't recognize your error reporting configuration.  Try this instead:

error_reporting(E_ALL | E_NOTICE);
ini_set('display_errors','1');


As for php startup errors, if you are not running your own installation, 
you don't need that.

So - if 'here3' is never echoed, then your code does NOT stop there - it 
obviously stopped somewhere prior to that.  Add more debugging lines to 
isolate exactly how far it gets.

(I assume that all of your other echos did appear?)