I was following a demo tutorial but I encountered this error and I fooled everything to the letter so am not sure what to do ...
Warning: include(home.php): Failed to open stream: No such file or directory in C:\xampp\htdocs\shoppingcart\index.php on line 9
Warning: include(): Failed opening 'home.php' for inclusion (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\shoppingcart\index.php on line 9
This is the index.php file code -
<?php
session_start();
// Include functions and connect to the database using PDO MySQL
include 'functions.php';
$pdo = pdo_connect_mysql();
// Page is set to home (home.php) by default, so when the visitor visits that will be the page they see.
$page = isset($_GET['page']) && file_exists($_GET['page'] . '.php') ? $_GET['page'] : 'home';
// Include and show the requested page
include $page . '.php';
?>
home.php
file is there in folder path? – Vel