just i want to need how to implement the server side scripting with html forms
How to implement PHP with HTML forms
Collapse
X
-
you can catch inputted data with the $_POST or $_GET global variables
for instance, if you have a textfield in your form with the attribute name="textfield " you can get the submitted data with $_POST['textfield']
here's a tutorial using html forms/php to send a mail http://www.kirupa.com/web/php_contact_form.htm
Comment