If you are using a button, you will need to declare the FORM otherwise some browsers will ignore all the form elements including the SUBMIT button. The FORM also contains the url for the data to be submitted to and any argument you want to pass.
So add the following to your page.
<FORM Method="Post" Action="https://cp.sample.
<input type="hidden" name="action" value="signup">
<input type="hidden" name="plan_id" value="<%=plan_id(1)%>">
<input type="hidden" name="signup" value="yes">
<input type="hidden" name="template_name" value="signup/begin.html/"
<input type="submit" value="Order">
</form>
Main Topics
Browse All Topics





by: Lolly-InkPosted on 2008-08-17 at 17:55:55ID: 22248847
Use a submit input button.
Select allOpen in new window