View Single Post
  #2 (permalink)  
Old 01-28-10, 05:29 PM
wirehopper's Avatar
wirehopper wirehopper is offline
-
 
Join Date: Feb 2006
Posts: 2,515
Thanks: 20
Thanked 109 Times in 106 Posts
Put these lines at the beginning of the files, they should force any error messages to be displayed.

PHP Code:

<?php

ini_set
('display_errors',1);
error_reporting(E_ALL|E_STRICT);
...
Also, check the HTML tags at W3Schools Online Web Tutorials, some may be deprecated.
Reply With Quote