Thanks for your reply JSHor & Hemi !
I tried the script change suggested by Hemi i.e.
<?php
ob_start();
session_start();
virtual('/nationalEx/Connections/ConnNationalEx.php');
even this didn't fix my problem so I am sending my code for ConnNationalEx.php as suggested by JShor
Code:
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_ConnNationalEx = "Localhost";
$database_ConnNationalEx = "nationalex";
$username_ConnNationalEx = "nationalEx";
$password_ConnNationalEx = "nationalEx";
$ConnNationalEx = mysql_pconnect($hostname_ConnNationalEx, $username_ConnNationalEx, $password_ConnNationalEx); or trigger_error(mysql_error(),E_USER_ERROR);
?>
Bookmarks