mercredi 25 février 2015

PHP 'if" statement not working

I am trying to make a register-login system, and I'm trying to make the registraton succes code, but the PHP code is not working, It shows the "else" only.



<HTML>
<BODY>
<?php
if (isset($_POST["user1"]) && isset($_POST["fullname"]) && isset($_POST["pass1"])) {
if (strlen($_POST["user1"]) != 8) {
echo 'A Felhasználónévnek 8 karakternek kell lennie!';
}
if ((str_word_count($_POST["fullname"])) != 2) {
echo 'A nevének 2 szóból kell állnia!';
}
if (strlen($_POST["pass1"]) != 6) {
echo'A Jelszónak legalább 6 karakterből kell állnia!';
}
if (isset($_POST["select"]) != true) {
echo 'Kérem, válassza ki, hogy diák, vagy tanár felhasználó-e!';
}
if ($_POST["kod"] == "DUSZA") {
}
else { ?>
<h1>Sikeres Regisztráció! A Főmenübe való belépéshez kattintson a gombra!</h1>
<form action="index.php" method="post">
<input type="submit" value="Kattints ide!" width="300" height="300">
</form>
<?php
session_start();

$user2 = $_POST["user1"];
$pass2 = $_POST["pass1"];
$diaktanar = $_POST["select"];
echo $diaktanar;
}
}
?>
</BODY>

Aucun commentaire:

Enregistrer un commentaire