sunslayer commented on a Page, url navigation like index.php?id=1  -  Dec 21, 2010

@natar (assuming you've created the respective files)

<?php
    $phpself = $_SERVER['PHP_SELF']; //its you php page.
    switch($_GET['id']) {
        case '1':
            include("home.php");
            break;
        case '2':
            include("home_2.php");
            break;
    }
    echo "<a href=$phpself?id=1>Login</a><br><a href=$phpself?id=2>forum</a>";
?>
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.