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
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
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?
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):
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
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.