Parameter passing in HTML

admin

Administrator
Staff member
How can I pass a value from one page to another. Page 1 has a value (like price). the user click a button and the second page is displayed with the value from the first page already filled in. The user adds additional information (intrest rate, years etc) then clicks "Calculate" I have everything working except passing the initial price from the first page to the second. - Any ideas?<!--content-->
  1. <br />
    Use cookies<br />
    Use a server-side language<br />
    Parse the URL with Javascript<br />
    [/list=1]<br />
    <br />
    Of course, the most secure way to do it is by using a server-side language like PHP or CGI.<!--content-->
 
Back
Top