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>
1. | Using include() Within a Loop | ||
2. | Using include() to Execute PHP and Assign the Return Value | ||
3. | Using include() |