Sep 19th, 2009, 12:58 PM
Hi Greg,
When does the white screen appear? When you load the page, or when it's submitted? If the former, there's probably just a syntax problem in your PHP that's preventing the page appearing. Or even more likely, the path to the library.php you're using is incorrect. Try changing your require_once() or require() line to an include() or include_once() and see if you get any error messages.
You could also add this line to the very top of the page, right after the opening <?php tag:
That will display all errors in the page. Perhaps it'll give us some clues.
- Ben
When does the white screen appear? When you load the page, or when it's submitted? If the former, there's probably just a syntax problem in your PHP that's preventing the page appearing. Or even more likely, the path to the library.php you're using is incorrect. Try changing your require_once() or require() line to an include() or include_once() and see if you get any error messages.
You could also add this line to the very top of the page, right after the opening <?php tag:
PHP Code:
error_reporting(2047);
That will display all errors in the page. Perhaps it'll give us some clues.
- Ben