Header already sent error in PHP joomla
- by Leo
hi all,
$dbhost = 'localhost';
$dbuser = 'EhpEngineUser';
$dbpass = 'password';
$conn = mysql_pconnect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');
$dbname = 'joomladb';
mysql_select_db($dbname);
// include 'config.php';
// include 'opendb.php';
above code works fine, if i comment DB connection part and inculde config.db and Opendb, then i get the error as Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\Joomla\Config.php:8) in C:\xampp\htdocs\Joomla\ConfXml.php on line 103
Both file are used for opening DB only.
regards,
Leo