Fatal error: Uncaught Error: Call to undefined function mysql_connect() in C:\xampp\htdocs\oes3\exam\includes\config.php:13
" <?php
//START THE SESSION
session_start();
//GLOBAL VARIABLES
define('DB_HOST','localhost');
define('DB_USER','root');
define('DB_PASS','');
define('DB_NAME','exam');
//FUNCTION TO CONNECT DATABASE
if(!mysql_connect(DB_HOST,DB_USER,DB_PASS))
die('Could not connect : '.mysql_error());
//FUNCTION TO SELECT THE DATABASE
if(!mysql_select_db(DB_NAME))
die('Could not select database : '.mysql_error());
?>"