I have a page with 3 frames. The main page has an include file which contains the majority of my php functions.
I would like to access those functions from within one of the 3 frames.
This is the main.php page.
include("func.php");
echo "<FRAMESET rows='50,*' border='0' FRAMESPACING='0'>"
."<FRAME src='menu.php' name='menuFrame' NORESIZE SCROLLING=NO frameborder=NO>";
echo "<FRAME name='top' src='top.php' marginwidth='10' marginheight='10' frameborder=no>";
echo "<FRAME SCROLLING=YES name='bottom' src='bottom.php' marginwidth='10' marginheight='10' frameborder=1>";
echo "</FRAMESET>";
#########################
Is there a way to use the functions stored in the "func.php" from the frame pages "top.php" or "bottom.php" pages.