A simple registration script

I am here, and I don't understand how to continue
The registration form submits to register.php using the HTTP POST method. To process the form data, you can check if the HTTP request is POST at the beginning of the register.php file like this:

if(strtoupper($_SERVER['REQUEST_METHOD']) === 'POST') {
// process the form
}
 
Back
Top