Thread
:
How to insert and to call out of mysql?
View Single Post
#
2
(
permalink
)
01-28-10, 05:29 PM
wirehopper
-
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.
wirehopper
View Public Profile
Find all posts by wirehopper