Hi
I want a code that when i type in a word
Example :
Credits = 9981
So when i type in CREDITS it gives me a Voucher Code / a code
It dosent have to say credits thats just an example !
+rep for all helpers !
Printable View
Hi
I want a code that when i type in a word
Example :
Credits = 9981
So when i type in CREDITS it gives me a Voucher Code / a code
It dosent have to say credits thats just an example !
+rep for all helpers !
what so a random string generator?
Yeah a random text thingy !
So when i type a code it says a reaction
Like with a bot , When you say coke , They say coke yeas rite away or sumtin !
what so you say
CREDITS 100
-845845
next lot of credits
CREDITS 100
-845845
that might be a problem :P
Anybody know a Random Text Genorator ??
So it reacts with the Word
LIKE A BOT !
i dont get you
PHP Code:<?php
if($_GET["action"] == "send") {
$text = $_POST["text"];
if($text == "credits") { // The Word that it responds too
echo rand() . "\n"; // What it says if the word you selected is the input
} else {
echo "You didn't not type credits correctly"; // The Output when the word you specify isn't the input
}
}
?>
<form name="credits" method="post" action="?action=send">
<input type="text" name="text">
<input type="submit" value="submit">
</form>
Thanks.
It works but is VERY Basic. I just made it up as i went along