Home » questions » What is the best free php form-handler program/script for beginners?

What is the best free php form-handler program/script for beginners?

2006-07-30 10:45:42, Category: Programming & Design
I have designed an HTML form (usind Dreamweaver 8) and I just need a program to handle it.

Answers

  1. tedjn

    On 2006-07-30 12:34:08


    Yes, I agree with Josh in that it is probably easier to learn how to handle forms yourself than use any form handling PHP system. In fact, there isn't much to be gained from the latter. A quick tutorial in form handling with PHP is follows: In your
    tag, you will have the method attribute. If that is set to post, you will use $_POST. If it is set to get, you will use $_GET. In my examples, I will use $_REQUEST, which is valid code and can be used regardless of whether the form method is post or get, but replace $_REQUEST with the specific one if you want more secure code. Now, your form fields should have a name attribute. Upon submission, to find out what the user submitted, you only need to use: $_REQUEST['form_field_name'] as a variable. You can find out, just so you can see, that $_REQUEST is an array of all the form fields submitted. You can view this array if you use the PHP code var_dump($_REQUEST); or print_r($_REQUEST); Now, for most form fields, it is the value attribute that is submitted. Disabled form fields are, of course, excluded. There are special exceptions for box?
  2. Creat a registry (members only) system with php, or similar language?
  3. How to reverse a painted (windows paint) picture to see the real picture behind it?
  4. What are the differences between Pascal and Delphi?
  5. Sending Emails through vb.net?
  6. Will spyware be abolished if I download a new operating system on my computer?
  7. C# and DirectX?
  8. what is the best photoshop to get???
  9. How does the computer display the date and time when windows starts even if there is no power supply
  10. Writing a program?