Mega Code Archive

 
Categories / Php / Language Basics
 

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>