Using include() : Include : Language Basics PHP Source Code


PHP Source Code » Language Basics » Include »

 

Using include()



<html>
<head>
<title>Using include()</title>
</head>
<body>
<?php
include("myIncludeFile.php");
?>
</body>
</html>

<!-- myIncludeFile.php
<?php
print "included!!<BR>";
print "4 + 4 = ".(4);
?>
-->


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Include