include function in php in Hindi :
Php
include() एक
library
function है
जिसका use
एक
webpage
में
किसी दुसरे webpage
को
add
करने
के लिए किया जाता है include
function एक
पेरामीटर लेता है उस पेज का
नाम जिसे include
करना
है include
function का
use
कर
के एक webpage
पर
एक ही webpage
को
एक से ज्यादा बार include
किया
जा सकता है include()
function कहलाता
है
syntax
:
include(“pagename”);
Example
:
<?php
include("p1.php");
echo
"Current Page";
include("p1.php");
?>
Comments
Post a Comment