ScottSwing
Gawd
- Joined
- Jun 9, 2010
- Messages
- 590
My problem:
I want all of my classes and variables in file.php to be available to f(). How do I do this?
Code:
<?
include 'file.php';
function f()
{
}
?>
I want all of my classes and variables in file.php to be available to f(). How do I do this?