View Single Post
  #4 (permalink)  
Old 6th August 2009, 18:20
u.masotti u.masotti is offline
D4PHP Guru
 
Join Date: Nov 2007
Posts: 228
u.masotti is on a distinguished road
Default

Sorry for late answer.

Quote:
Originally Posted by coolmike View Post
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.
__________________
Ciao.
Mimmo.
Reply With Quote
Sponsored Links