Skip to content
Snippets Groups Projects
Commit 87f96737 authored by bx khateri's avatar bx khateri
Browse files

register

parent 5c943be0
No related branches found
No related tags found
No related merge requests found
...@@ -21,23 +21,23 @@ $message = NULL; ...@@ -21,23 +21,23 @@ $message = NULL;
if (isset($_POST['user_name'])) { if (isset($_POST['user_name'])) {
$provided_user_name = $_POST['user_name']; $provided_user_name = htmlspecialchars($_POST['user_name']);
} }
if (isset($_POST['email'])) { if (isset($_POST['email'])) {
$provided_email = $_POST['email']; $provided_email = htmlspecialchars($_POST['email']);
} }
if (isset($_POST['password'])) { if (isset($_POST['password'])) {
$provided_password = $_POST['password']; $provided_password = htmlspecialchars($_POST['password']);
} }
if (isset($_POST['age'])) { if (isset($_POST['age'])) {
$provided_age = $_POST['age']; $provided_age = htmlspecialchars($_POST['age']);
} }
if (isset($_POST['bio'])) { if (isset($_POST['bio'])) {
$provided_bio = $_POST['bio']; $provided_bio = htmlspecialchars($_POST['bio']);
} }
$allfildsOk = ( $allfildsOk = (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment