J'ai créé un captcha text simple mais je n'arrive jamais à avoir un résultat correct.
J'ai besoin d'aide pour corriger ça. Et ça peut servir à d'autre qui en veut un.
merci d'avance.
Modifié par dan4 (24 May 2010 - 07:15)
<?php
session_start();
$text = rand(10000,99999);
$_SESSION["captcha"] = $text;
?>
<?php
if(isset($_POST['captcha'])) {
if($_POST['captcha'] !== $_SESSION['captcha']) {
die('Code incorrect!');
}
else {
echo 'code correct!';
}
}
echo $_SESSION['captcha'];
?>
<form method="post">
<input type="text" name="captcha" />
<input type="submit" value="test" />
</form>
J'ai besoin d'aide pour corriger ça. Et ça peut servir à d'autre qui en veut un.
merci d'avance.
Modifié par dan4 (24 May 2010 - 07:15)