I am beginner in php, trying to make one main.php file that incldes header and footer for the start
header.php
<html>
<body>
<div class="header">
logo, navigation etc
</div>
footer.php
<div class="footer">
Footer content here
</div>
</body>
</html>
and the main file
<?php include "header.php"; ?>
<div class="main content">
<h1> header </h1>
<p> paragraph </p>
</div>
<?php include "footer.php"; ?>
the errors:
Warning: include(header.php): failed to open stream: No such file or directory in - on line 1
Warning: include(): Failed opening 'header.php' for inclusion (include_path='.:') in - on line 1
Warning: include(footer.php): failed to open stream: No such file or directory in - on line 6
Warning: include(): Failed opening 'footer.php' for inclusion (include_path='.:') in - on line 6
all files are in the same foler and doing it on XAMPP