Include takes a file name and simply inserts that file's contents into the script that issued the include command.
hello.php
<?php
echo "welcome guest";
?>
home.php
<?php
include('hello.php');
?>
hello.php
<?php
echo "welcome guest";
?>
home.php
<?php
include('hello.php');
?>
0 comments:
Post a Comment
Thanks for your valuable Comment