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 !

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 !
.xo
what so a random string generator?
EDTALKING
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 !
.xo
what so you say
CREDITS 100
-845845
next lot of credits
CREDITS 100
-845845
that might be a problem![]()
EDTALKING
Anybody know a Random Text Genorator ??
So it reacts with the Word
LIKE A BOT !
.xo
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>
Last edited by Drompo; 29-05-2007 at 01:08 PM.
nice, wdPHP Code:<?php
if($_GET["action"] == "send") {
$text = $_POST["text"];
if($text = "credits") {
echo rand() . "\n";
} else {
echo "You didn't not type credits correctly";
}
}
?>
<form name="credits" method="post" action="?action=send">
<input type="text" name="text">
<input type="submit" value="submit">
</form>![]()
EDTALKING
Thanks.
It works but is VERY Basic. I just made it up as i went along
Want to hide these adverts? Register an account for free!