PHP Tutorial – $_REQUEST Function

In previous tutorials we already looked at the PHP built-in $_GET function and $_POST function. In this tutorial we take a quick look at the PHP built-in $_REQUEST function.

The PHP built-in $_REQUEST function can be used with both the GET and POST methods. More »


Posted in PHP Tutorials | 5 Comments


PHP Tutorial – $_POST Function

The PHP built-in $_POST function is used to collect values in a form (as name says, you do this with the method=”post”) The information send with POST method is invisible to others (the opposite of the GET method.)

Another difference between the $_GET function and the $_POST function is that the $_POST function doesn’t limit the amount of information that you want to send. (Limit of $_GET is 100 characters.) But you should be aware of the following: by default there is an 8Mb maximum size for the post method. (If you want a larger size you can change it in the php.ini file. The setting is called post_max_size.) More »


Posted in PHP Tutorials | 5 Comments


PHP Tutorial – $_GET Function

The PHP built-in $_GET function is used to collect values in a form (as name says, you do this with the method=”get”) You should remember that the information sent from a form with the GET method is visible to everyone, because the result is displayed in the address bar.

The $_GET function limits the number of characters to be send (max. 100 characters.) More »


Posted in PHP Tutorials | 1 Comment


PHP Tutorial – Form Handling

In this PHP language tutorial we will look at PHP forms and form handling. We will use the PHP $_GET and $_POST variables to retrieve information from the HTML form. You use forms to get user input. More »


Posted in PHP Tutorials | 1 Comment