Hey,
Here is what you will need to do. First include the file that has all the functions you want. This can be done either by same directory or different ones. I usually setup my structure by having all of my includes in one folder named includes. Thus looking something like this:
Main directory
|--includes
|--images
|--common
|---|--css
|---|--logos
|---|--includes
<?php
// calling.php
// SAME DIRECTORY CALLING FROM MAIN DIRECTORY
include_once("file.php");
CallFunction();
?>
Different directories:
<?php
// calling.php
// DIFFERENT DIRECTORY CALLING FROM MAIN DIRECTORY
include_once("includes/file.php");
CallFunction();
?>
Getting to have the file attached to the file being processed is really the main purpose of the include(), include_once(), require(), require_once() functions. Read up on them at: http://us3.php.net/manual/en/language.control-structures.php
Take care and keep coding!
Chad R. Smith