Create the PHP script that'll receive the data from the Registration HTML form.
Must make sure all fields are not empty and that password and confirm password match.
Once data is validated make sure you put it into a message array.
$message = array("type"=>"register", "email"=>$email, "password"=>$password);
This will be send to the MQ Client later.
Create the PHP script that'll receive the data from the Registration HTML form. Must make sure all fields are not empty and that password and confirm password match. Once data is validated make sure you put it into a message array.
$message = array("type"=>"register", "email"=>$email, "password"=>$password); This will be send to the MQ Client later.