Error on PHP

A

Anonymous

Guest
Maybe error output has been disabled...

Add this to the top of your script:

Code:
<?php
error_reporting(E_ALL);
?>

Also, check if a logfile with PHP errors has been created. Some servers are setup so they don't display errors but instead create a logfile. I use that myself for production environments.

Coditor
 
And also check this values properly....
mysql_connect('localhost', 'root', 'cendol')
 
Back
Top