Ok, what you told me helped. Here, did I set this up right?
if( empty($GET['file']) )
$file = "FILE1";
$file = "FILE2";
$file = "FILE3";
else $file = $GET['file'];
include_once($file . ".php");
If so, then I wanna know how to I put a page up when you just go to the main.php not main.php?file=FILE1 . Also, how would I be able to have what is in FILE1, FILE2, FILE3 just be inside of one php file? Or is that not possible?
I am really new to this PHP, I know HTML as good as anyone! But I really wanna learn this PHP and its confusing as hell not have a book or anything to learn it from. Thanks for the help.