• We just launched and are currently in beta. Join us as we build and grow the community.

PHP Forms

HassaMassa

Modder
Divine
H Rep
0
0
0
Rep
0
H Vouches
0
0
0
Vouches
0
Posts
141
Likes
140
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 300 XP
Using the HTML Form is very important in creating a PHP application, because it serves as a holder of information from a website's visitors and then use the PHP to process that information.

Heres the simple HTML Form.

The code below is a simple HTML Form with a two input boxes for Fullname, E-mail Address and a submit button. When the user click the submit button, the data in the form will be sent to the HTTP POST method to be processed in a PHP file called “processData.php”.

  1. <

    html>
  2. <

    body>
  3. <

    h1>

    Sample HTML Form</

    h1>
  4. <

    form action=

    "processData.php"

    method=

    "post"

    >
  5. FullName:<

    input type=

    "text"

    name=

    "fullname"

    ><

    br>
  6. E-

    mail

    Address:

    <

    input type=

    "text"

    name=

    "email"

    ><

    br>
  7. <

    input type=

    "submit"

    >
  8. </

    form>
  9. </

    body>
  10. </

    html>

Output:

form.png

Code for processData.php:

  1. <?php
  2. echo

    'Your Fullname is: '

    .

    $_POST

    [

    'fullname'

    ]

    ;
  3. echo

    '<br/>'

    ;
  4. echo

    'Your Email address is: '

    .

    $_POST

    [

    'email'

    ]

    ;
  5. ?>

The code above will simply display the data that has been passed from HTML Form using the superglobal ”$_POST[]” variable. And the output of this application looks like as shown below:

Your Fullname is: Joken Villanueva
Your Email address is: [email protected]

Book traversal links for PHP Forms

  • ‹ PHP Foreach Loop
  • Up
  • PHP Get ID Of Last Inserted Data In MySQL ›

 

438,740

315,860

315,869

Top