in reply to Re^2: Multiple Pages with CGI
in thread Multiple Pages with CGI

Can you please explain the method in which user enters the information into a form...thanks !!

Replies are listed 'Best First'.
Re^4: Multiple Pages with CGI
by sgifford (Prior) on Dec 04, 2007 at 21:09 UTC
    Data from the form can come from user input from the various HTML input elements (textboxes, buttons, dropdowns, radio buttons, etc), or from data embedded in the HTML document by the server using hidden form elements, like this:
    <form> <input type="hidden" name="var1" value="val1"> <input type="hidden" name="var2" value="val2"> <!-- ... --> </form>