Simple Html help wanted

Discussion in 'HTML & Website Design' started by smartcard, Dec 20, 2006.

  1. #1
    In one of my PHP script I have a hyper link html code as follows and it is working fine.

    How can I modify this codes to have a new target frame?
     
    smartcard, Dec 20, 2006 IP
  2. KPeh

    KPeh Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Try adding target="_blank" there!
     
    KPeh, Dec 20, 2006 IP
  3. JEET

    JEET Notable Member

    Messages:
    3,832
    Likes Received:
    502
    Best Answers:
    19
    Trophy Points:
    265
    #3
    Read the <a target="_blank" href="<?php the_syndication_permalink(); ?>">Full Article</a>

    The above should do it.
    Bye :)
     
    JEET, Dec 20, 2006 IP
  4. serversidescripter

    serversidescripter Banned

    Messages:
    69
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4

    If you are working with frame

    <a target="framename" href="<?php the_syndication_permalink(); ?>">Full Article</a>

    where framename is the name of the frame you want the new page to appear
    if you use the target="_Blank" it will just open the page in new window
     
    serversidescripter, Dec 20, 2006 IP
  5. weknowtheworld

    weknowtheworld Guest

    Messages:
    306
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    <a href="<?php the_syndication_permalink(); ?>" target="_blank">Full Article</a>

    Is the correct code..
     
    weknowtheworld, Dec 21, 2006 IP