我有这个登陆页面,我需要在提交后预先填充表单值。基本上最后我必须使网址看起来像这样......
我现在所拥有的表格是......
<form name="regForm" method="get" action="http://example.com/r.php?sid=xx&pub=xxxx&c1=&c2=&c3=&append=1">
<input id="firstname" class="text" type="text" name="firstname"/><br>
<input id="lastname" class="text" type="text" name="lastname" /><br>
<input id="email" class="text" type="text" name="email" /><br>
<input id="address" class="text" type="text" /><br>
<input id="city" class="text" type="text"/><br>
<input id="zipcode" class="text" type="text" maxlength="5" name="zipcode" /><br>
<input type="submit" value="Send Me My FREE List" id="submitBtn2"/>
</form>
提交表单后,如何在上面创建该 URL?我整天为此绞尽脑汁,无法弄清楚,我觉得我很接近。
谢谢您的帮助!