Thread: PHP Help
View Single Post
11-21-2005, 10:42 PM
#11
Aros is offline Aros
Aros's Avatar
Status: Lurker
Join date: Jul 2004
Location: the Netherlands
Expertise:
Software:
 
Posts: 1,074
iTrader: 2 / 100%
 

Aros is on a distinguished road

  Old

I would use the method sketchie posted;

PHP Code:
if (isset($_GET['id']))
{
    switch (
$_GET['id'])
    {
        case 
"about":
            include(
"about.php");
            break;
        case 
"contact":
            include(
"contact.php");
            break;
        default:
            include(
"main.php");
    }