$_GET

How $_GET Variable Works and How to Use It in PHP/MySQL

Submitted by nurhodelta_17 on
This tutorial will show you how does $_GET method works and how to use it. $_GET is a kind of method in getting a particular value in the webpage's url. This will be possible by sending this particular variable in the url of the "go to" page. In this tutorial, I will show you how to send a value in your url and getting that particular value via $_GET method. Creating our Database First, we're

PHP Forms

Submitted by alpha_luna on

PHP Forms

In this tutorial we are going to learn about $_GET, $_POST, and $_REQUEST. Nowadays, PHP is one of the most popular means of processing HTML forms. To read the data submitted by a form, using PHP, use one of three special arrays: $_GET, $_POST or $_REQUEST. The first two contain the data submitted via their respective protocols.