Sorry for late answer.
Quote:
Originally Posted by coolmike
when I try to run the app as suggested in the 'Creating a Database' guide, all I get is a blank page.
|
Try to raise error level in the first lines of your page: there are possibilities that errors aren't output because they are filtered by PHP.
Add these two lines as the very first of your script.
PHP Code:
ini_set("display_errors",1);
error_reporting(E_ALL);
Try to scan HTML source to see if there are messages hidden by other visulized components (remember that objects with absolute positioning and greater z-order can hide other elements)
A completely blank page smell like a PHP fatal syntax error.