Results 1 to 5 of 5

Thread: I Need help so bad.. :(

  1. #1
    Join Date
    Jul 2009
    Location
    Lithuania
    Posts
    25
    Thanks
    9
    Thanked 0 Times in 0 Posts

    Question I Need help so bad.. :(

    Hello,
    I want to ask how to do in same file index.php links?
    I think I know how to do but i don't know why this code don't working:
    PHP Code:
    <?php
    if (isset($about)) {
    echo 
    "about me: I'm a student...";
    }
    elseif (isset(
    $contact)) {
    echo 
    "contact me8654894654";
    }
    else {
    echo 
    "Hello Every1!";
    }
    ?>
    Can any one help for me?
    Thanks

  2. #2
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    umm... What is it supposed to do?

  3. #3
    Join Date
    Jul 2009
    Location
    Lithuania
    Posts
    25
    Thanks
    9
    Thanked 0 Times in 0 Posts

    Unhappy

    Quote Originally Posted by traq View Post
    umm... What is it supposed to do?
    I think it should show different informacion in same page
    like .php?about (should show about me: I'm a student...) and .php?contact ( should display: contact me8654894654 )
    you know what i mean? :S I don't know how to explain It should be a lot informacion in same page but differents .php?link

  4. #4
    Join Date
    Feb 2009
    Posts
    303
    Thanks
    18
    Thanked 36 Times in 36 Posts

    Default

    I think this is what you want:
    PHP Code:
    <?php
      
    if(isset($_GET['about'])){ //If index.php?about:
        
    echo 'About Me....';
      }
      elseif(isset(
    $_GET['contact'])){ //If index.php?contact:
        
    echo 'Contact Me';
      }
    ?>
    And so on...

    Hope this helps,
    X96
    Alex Blackie, X96 Design
    My Website
    I specialize in: HTML5, CSS3, PHP, Ruby on Rails, MySQL, MongoDB, Linux Server Administration

  5. The Following User Says Thank You to X96 Web Design For This Useful Post:

    Total_me (07-19-2009)

  6. #5
    Join Date
    Jul 2009
    Location
    Lithuania
    Posts
    25
    Thanks
    9
    Thanked 0 Times in 0 Posts

    Default

    thanks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •