I'm trying to build myself a website using PHP and MySQL. I get the below error:
Fatal error: require_once(): Failed opening required '/home/konjam /public_html/demo/cp/db.php' (include_path='.:/Applications/XAMPP/xamppfiles /lib/php') in /Applications/XAMPP/xamppfiles/htdocs/KD/demo/cat_details.php on line 5
Here's my code for the line where it says this specific error:
<?php ob_start(); session_start(); require_once("conf.php"); require_once("db.php"); $db = new db(); ?> Any help guys?
db.conffile is within same location as file script?