Hey! Thanks for your support everybody!!
But when I inserts the include statement it displays three HTML sites in one, and I want it to be like this index.php?site=aboutme ( that displays ONLY the about me section.)
Is there any way I can "disable" the Include statement, until ?site=about is pressed by the user (by a link of course 🙂 )
Would this work as a "disable" function?
(If it does I gonna jump outta window 🙂 )
<?
if ($site == "aboutme") {
include ("aboutme.php");
}
if ($site == "portfolio") {
include ("portfolio.php");
}
?>
Thanks again!!!