i am using xampp this is my application_top file when i run script is show that issue anyone help me to solve that issue
<?php
include('config.php');
include('functions.php');
// Connect to database
$dbConnection = mysql_pconnect(DB_HOST, DB_USER, DB_PASS) or die(mysql_error(),E_USER_ERROR);
mysql_select_db(DB_NAME, $dbconn);
?>
this is my config file
<?php
// Database Settings
define('DATABASE_HOST','localhost'); // Hostname of database server. Usually 'localhost'
define('DATABASE_NAME','script'); // The name of the database to connect to
define('DATABASE_USER','root'); // The username to connect to the database as
define('DATABASE_PASS',''); // The password to use on the database
?>