Page redirect with top bar

Discussion in 'PHP' started by lumpy, Nov 13, 2010.

  1. #1
    Hello guys. I'm kinda newbie here, so this is what I want to do.

    I want to redirect the user to a different page but in the same time keep him on my page. Just like Google Translate does here: Click to view.

    So I want that top bar on my page, and the rest of the page to be a redirect to a certain page. How to do that ?
     
    lumpy, Nov 13, 2010 IP
  2. dixcoder

    dixcoder Member

    Messages:
    71
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    26
    #2
    use html frameset for that
     
    dixcoder, Nov 13, 2010 IP
  3. vaidikkp

    vaidikkp Peon

    Messages:
    72
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    you can use frames. or you can also use iframes if don't like frames much.
     
    vaidikkp, Nov 14, 2010 IP
  4. arpit13

    arpit13 Well-Known Member

    Messages:
    294
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    128
    Digital Goods:
    1
    #4
    u can use <iframe> tag of html.
    its easy to use.
    something like this:
    
    <html>
    .... your topbar code here
    ...
    <iframe src='link goes here'></iframe>
    
    Code (markup):
     
    arpit13, Nov 14, 2010 IP
    srobona likes this.