Test of PHP Includes : Include « Language Basics « PHP
- PHP
- Language Basics
- Include
Test of PHP Includes
<!-- include-me.php
<?php
echo( '<p>"from included file!"</p>' );
?>
-->
<html>
<head>
<title> Test of PHP Includes </title>
</head>
<body>
<?php
include('include-me.php');
?>
</body>
</html>
Related examples in the same category