1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

PhP Linking

Discussion in 'PHP' started by docquesting, Sep 9, 2005.

  1. #1
    I have tried and tried to get the below to link to url dont know what I am doing wrong so maybe somebody that knows more can help. By the way I only know enough to barely install a script if even that. The only thing I know to change is what I have in bold.

    <?php 
     $home_url = "http://".$_SERVER['SERVER_NAME']; 
     print "<br>\n";
     print "Thank you for completing our survey.<br>\n";
     print "<br>\n";
     print "<A HREF=\"$home_url\">Return home?</A><br>\n";
     print "<br>\n";
    ?>
    
    <?php 
     $home_url = "http://".$_SERVER['SERVER_NAME']; 
     print "<br>\n";
     print "Thank you for completing our survey.<br>\n";
     print "<br>\n";
     print "<A HREF=\"$[B]www.mysite.com[/B]\">Return home?</A><br>\n";
     print "<br>\n";
    ?>
    PHP:
    I doubt I am doing that right and am sure I probably need to mod something else.
     
    docquesting, Sep 9, 2005 IP
  2. Gmorkster

    Gmorkster Peon

    Messages:
    202
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #2
    try

    print "<A HREF=\"http://www.mysite.com\">Return home?</A><br>\n";

    instead of

    print "<A HREF=\"$www.mysite.com\">Return home?</A><br>\n";

    edited:

    or replace
    $home_url = "http://".$_SERVER['SERVER_NAME'];
    with
    $home_url = 'http://www.mysite.com';

    in the *first* script
     
    Gmorkster, Sep 9, 2005 IP
  3. docquesting

    docquesting Active Member

    Messages:
    54
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    98
    #3
    Eureka. That seems to work. You are so kind thanks so very much. Wish I had someone like you handy to ask things anytime I needed php help.
     
    docquesting, Sep 9, 2005 IP
  4. Gmorkster

    Gmorkster Peon

    Messages:
    202
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #4
    No problem :) Post in this forum whenever you need help, someone will definitely give you a hand!
     
    Gmorkster, Sep 10, 2005 IP