I have an HTML script ("index.html") which includes the follow PHP code:
< ?php
include ('footer.php');
?>
The PHP script ("footer.php") contains the following code:
<?php
echo "Hello world!";
?>
When I run :index.html: on the WampServer as a localhost, the PHP code from "index.html: is displayed. How do I display "Hello world!" from "footer.php"?
Thank you!