Require Runction in php in hindi

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>";
?>



 p2.php:

<?php
require("p1.php");
echo "Current Page";
echo "<br>";
require("p1.php");
?>



OutpPut :

This IS a P1 Page
Current Page
This IS a P1 Page


Full PHP Course in Hindi Click Here 

Comments