The require_once()statement include and evaluates the specified file during of execution of the script.This is a behavior similar to the require() function with the only difference being that it code from a file has already been included.It will not be included again.
Syntaxinclude "function name";
Example
vars.php
<?php $color='red'; $fruit='apple'; echo $fruit."color is".$color" ?> |
0 comments:
Post a Comment