Form Submit Question - add zipcode to action url?
Been googling this one & none of the forum threads I've found have been able to help.
I have a one-page zip submit form on my server and want to take the zipcode and append it to the end of the URL it will redirect to upon submit. My LP designer gave me the following, but I really need to get it live & sometimes am not able to get a hold of him quickly. He said earlier to use a GET but not sure what to do w/ it.
the form code is...
Been googling this one & none of the forum threads I've found have been able to help.
I have a one-page zip submit form on my server and want to take the zipcode and append it to the end of the URL it will redirect to upon submit. My LP designer gave me the following, but I really need to get it live & sometimes am not able to get a hold of him quickly. He said earlier to use a GET but not sure what to do w/ it.
the form code is...
Code:
<form action="[URL="http://www.mylink.com?var1=x&var2=y&zipcode=%28not"]http://www.mylink.com?var1=x&var2=y&zipcode=(not[/URL] sure what to put here)>
<p class="zipcode">
<input class="zipcode" type="text" value="Enter Zip Code..." onfocus="this.select();" />
</p>
<p class="center">
<input type="image" src="myimage.png" onmouseover="this.src='hoverimg.png'" onmouseout="this.src='anotherimage.png'" />
</p>
</form>