Failed to open stream: No such file or directory 'tambahuser.php'

Viewed 15

Warning: include(tambahuser.php): Failed to open stream: No such file or directory in C:\xampppppppp\htdocs\abc\cons\masterpage.php on line 285

Warning: include(): Failed opening 'tambahuser.php' for inclusion (include_path='C:\xampppppppp\php\PEAR') in C:\xampppppppp\htdocs\abc\cons\masterpage.php on line 285

facing these errors for days, can someone help me out?

1 Answers

File tambahuser.php must be in the same directory as the file masterpage.php.

Result :

if there is a folder where the file tambahuser.php exist, try include('./folder_name/file.php');

Related