1.

How To Create A Web Form?

Answer»

If you take input data from visitors on your Web site, you can create a Web form with input fields to ALLOW visitors to fill in data and submit the data to your server for processing. A Web form can be created with the <FORM> tag with some input tags. The &AMP;FORM tag should be written in the FOLLOWING format:
<form action=processing.php method=get/post>
......
</form>
Where "processing.php" SPECIFIES the PHP page that PROCESSES the submitted data in the form.

If you take input data from visitors on your Web site, you can create a Web form with input fields to allow visitors to fill in data and submit the data to your server for processing. A Web form can be created with the <FORM> tag with some input tags. The &FORM tag should be written in the following format:
<form action=processing.php method=get/post>
......
</form>
Where "processing.php" specifies the PHP page that processes the submitted data in the form.



Discussion

No Comment Found