Our Scripts Vault contains many game scripts that you can use to create your own game!
<label><p> To make sure your human - <?php $no1 = rand(1,10); $no2 = rand(1,10); $answer = $no1 + $no2; echo " whats " . $no1 . " + " . $no2 ." ?"; ?> <input name="Maths" type="text" /> <a href="http://localhost/Contact.php"> I need help</a></p>
. . .And if you must have subtraction, if ($no1 < $no2) list($no1, $no2) = array($no2, $no1);
no need for a big ol' if statement. just use abs($no1 - $no2). If its positive, great. if its negative ... well then there are bigger problems
Why? because almost every possible password has been cracked?
function enc($text){$salt = "32D4$ d^&yyt**#h3";//not my real salt$hash = sha1($salt.md5($text));return $hash;}
Code: [Select]$hash = sha1($salt.md5($text));}
$hash = sha1($salt.md5($text));}
$hash = sha1($salt.$text);}