Quote:
Originally Posted by PHP-Devline
All that I get is a white page (blank),.
|
You are getting a fatal error (most likely) and you have error reporting turned off. You can add (after the open php tag) this line:
error_reporting(1);
or (if that doesn't work):
error_reporting(E_ALL);
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|