01-02-2010, 07:50 PM
|
#7 (permalink)
|
|
Moderateur
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
|
Do you have error reporting/displaying set sufficiently high to see errors/warnings/notices?
At the top of your script try setting:
PHP Code:
ini_set('display_errors', 'On'); error_reporting(E_ALL);
|
|
|
|