< href="<?php echo $_SERVER['PHP_SELF']; ?>?Content=one">Case One</a><br /> < href="<?php echo $_SERVER['PHP_SELF']; ?>?Content=two">Case Two</a><br /> < href="<?php echo $_SERVER['PHP_SELF']; ?>?Content=two">Case Tthree</a><br /> < href="<?php echo $_SERVER['PHP_SELF']; ?>Main</a> <br /> <br /> <?php switch ($Content) { case one: echo "This is our First Case"; break; case two: echo "This is our Second Case"; break; case three: echo "This is our Third Case"; break; default: echo"This is our default Content in case nothing was selected!"; } ?> hope this helps a newbie! I