mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
changed to use class
This commit is contained in:
parent
09c1ac3828
commit
b4ec05e9b3
1 changed files with 4 additions and 4 deletions
|
@ -4,10 +4,10 @@ require( '../config.php' );
|
|||
if (isset($_POST["Username"]) and isset($_POST["Password"]) and isset($_POST["Email"]) )
|
||||
{
|
||||
//check values
|
||||
$user = checkUser($_POST["Username"]);
|
||||
$pass = checkPassword($_POST["Password"]);
|
||||
$cpass = confirmPassword();
|
||||
$email = checkEmail($_POST["Email"]);
|
||||
$user = users::checkUser($_POST["Username"]);
|
||||
$pass = users::checkPassword($_POST["Password"]);
|
||||
$cpass = users::confirmPassword();
|
||||
$email = users::checkEmail($_POST["Email"]);
|
||||
} else {
|
||||
$user = "";
|
||||
$pass = "";
|
||||
|
|
Loading…
Reference in a new issue