I made a index.php file with following code:
<?php
include('header.php');
?>
Text comes here
<?php
include('footer.php');
?>
Now I get following errors:
Warning: Failed opening 'header.php' for inclusion (include_path='') in e:\index.php on line 2
Warning: Failed opening 'header.php' for inclusion (include_path='') in e:\index.php on line 2
Text comes here
Warning: Failed opening 'footer.php' for inclusion (include_path='') in e:\index.php on line 8
Warning: Failed opening 'footer.php' for inclusion (include_path='') in e:\index.php on line 8
What do I wrong?