I have a file like this...
b[/b]
<?php
include("test2.php");
include("test3.php");
?>
b[/b]
<?php
function site_welcome() {
echo 'Welcome to the site!<br>
';
}
site_welcome();
?>
b[/b]
<?php site_welcome(); ?>
b[/b]
Welcome to the site!
Fatal error: Call to undefined function: site_welcome() in test3.php on line 1
(My Question)
How do I go about calling functions from test2 in test3? Is that even possible?