Thread: PHP Help
View Single Post
11-21-2005, 10:54 PM
#14
jared is offline jared
jared's Avatar
Status: Member
Join date: Sep 2005
Location: Victoria, TX
Expertise:
Software:
 
Posts: 172
iTrader: 0 / 0%
 

jared is on a distinguished road

Send a message via AIM to jared Send a message via Skype™ to jared

  Old

Blaze, if you want to use the method Aros and sketchie decribed do this

where you want your page to be included put
PHP Code:
<?
if (isset($_GET['section']))
{
    switch (
$_GET['section'])
    {
        case 
"car":
            include(
"car.php");
            break;
        default:
            include(
"main.php");
    }
}
?>
you should be able to keep the link the same