I've got 2 functions in 1 included file. I want 1 of the functions to call the other, can i do this straight off, or do i need to include the file in itself?
Also if i set variables out side a function in the include file can all of the functions access these variables.
ie.
<?
$var = var
$var2 = var
function dosomething()
{
print $var
print $var2
}
?>