How to implement PHP with HTML forms

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • thinkwebs
    New Member
    • Jun 2007
    • 3

    How to implement PHP with HTML forms

    just i want to need how to implement the server side scripting with html forms
  • ronnil
    Recognized Expert New Member
    • Jun 2007
    • 134

    #2
    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

    Working...