Quote:
|
Originally Posted by evilghost
Sure, simply create a separate page called "functions.php" and on each PHP page where you require the use of the function issue the following:
require("functions.php");
It's really that easy. 
|
Isn't it better to use:
require_once('functions.php'); ?