View Single Post
Old 10-04-2007, 03:59 AM   PM User | #13
Inigoesdr
Super Moderator


 
Inigoesdr's Avatar
 
Join Date: Mar 2007
Location: Florida, USA
Posts: 3,601
Thanks: 2
Thanked 397 Times in 390 Posts
Inigoesdr is a jewel in the roughInigoesdr is a jewel in the roughInigoesdr is a jewel in the rough
My code isn't working, and I get no errors!

First and foremost: Turn on error reporting at the very beginning of your script.
PHP Code:
<?php
ini_set
('display_errors',1);
ini_set('display_startup_errors',1);
error_reporting (E_ALL);
?>
If you have MySQL queries that aren't working add some error logic to find out why. See the manual for some examples.

Also, be sure output buffering is off: ob_end_flush()

And if you can't figure it out after that, post a new thread in this forum with as much relevant information as possible, and any code that we might need so we can help you as quickly as possible.

Last edited by Inigoesdr; 11-16-2008 at 06:20 PM..
Inigoesdr is offline   Reply With Quote