require
function() :
यह php का एक library function है इस
function
का use एक webpage
पर
किसी और webpage
को
include
करने
के लिए इस function
का use किया जाता है यह function include function की तरह ही होता है
syntax
:
require(“pagename”);
Example :
p1.php
<?php
echo "This IS a P1 Page";
echo "<br>";
?>
echo "This IS a P1 Page";
echo "<br>";
?>
p2.php:
<?php
require("p1.php");
echo "Current Page";
echo "<br>";
require("p1.php");
?>
OutpPut :
This IS a P1 PageCurrent Page
This IS a P1 Page
Comments
Post a Comment