fill survey out before registering.

Discussion in 'HTML & Website Design' started by buyloewen, Oct 31, 2008.

  1. #1
    Ok this may be a stupid question but here goes. Ok I have a landing page for people to register and login on. I want people to go to fill out a survey before the registration page. Will this have them fill out the survey then redirect to the registration page <a>href="http:mysurveypage.com//</a>http://www.mysitesignuppage.com
     
    buyloewen, Oct 31, 2008 IP
  2. faithnomoread

    faithnomoread Peon

    Messages:
    174
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Not sure what you're trying to say, but your link should look something like this I guess:
    <a href="http://mysurveypage.com">Whatever you want the link to say here</a>
    Code (markup):
    Not sure how your redirect works
     
    faithnomoread, Oct 31, 2008 IP
  3. buyloewen

    buyloewen Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I wish I could test it out but I can't fill out the survey myself. I would like them to fill out the form then return to my sites registration page. Do I have to change any php?
    <a href="http://mysurveypage.com">Whatever you want the link to say here</a>
    So I put the registration url inside the anchor?
     
    buyloewen, Oct 31, 2008 IP
  4. faithnomoread

    faithnomoread Peon

    Messages:
    174
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Yes, inside the href="" inside the quotations.
    <a href="http://mysurveypage.com">Whatever you want the link to say here</a>
    Code (markup):
    will look like this:
    Whatever you want the link to say here
    but if you want the link to open in a new tab or window the you put a target="_blank" in your anchor:
    <a href="http://mysurveypage.com" target="_blank">Whatever you want the link to say here</a>
    Code (markup):
     
    faithnomoread, Oct 31, 2008 IP
  5. buyloewen

    buyloewen Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    where do I put the url for the signup page.does it go in the whatever link section like this
    <a>http://mysurveypage.com" target="_blank">http://mysigunuppage.com</a>
    thx for the help by the way
     
    buyloewen, Oct 31, 2008 IP
  6. faithnomoread

    faithnomoread Peon

    Messages:
    174
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #6
    like this
    <a href="http://mysurveypage.com" target="_blank">Register Now!</a> 
    Im not sure how you redirect adds, but it adds on to the link like this somehow:
    <a href="http://mysurveypage.com#http://mysigunuppage.com" target="_blank">Register Now!</a>
    Code (markup):
    Something like that, but I dont know how that works exactly.
     
    faithnomoread, Oct 31, 2008 IP