My PHP anti cracker program

Questions about programming languages and debugging
Post Reply
User avatar
Swan
Knight of the Sword
Knight of the Sword
Posts: 827
Joined: 18 Oct 2006, 16:00
17
Contact:

My PHP anti cracker program

Post by Swan »

Dunno what the hell is the best way to call it....


Basically my program (trys to at least) keep out users by taking whatever value they enter everytime, and then adding 100 to it, because the right answer is already whatever they enter, this means that they are stuck chasing their own tail.

Here it is...

<?php



$correctanswer=$whateverisentered;


IF ($correctanswer===$whateverisentered)

{

$whateverisentered+100==($confusedvalue);



}

function confusor($confusedvalue)

{

if ($confusedvalue <>$correctanswer)

{

echo 'toy, you got burned.';


}

}


?>



Ofc it will require a form to fully try it....but Im posting this now just to give a rough idea any feedback will be much appreciated.

Im calling it the Juggy Effect. After my little buddy Juggalo Mushroom

User avatar
ayu
Staff
Staff
Posts: 8109
Joined: 27 Aug 2005, 16:00
18
Contact:

Post by ayu »

I love your choice of name ^^

anyway keep up the good work =) tell me when you have a finished example ^^
"The best place to hide a tree, is in a forest"

shamir
Computer Manager
Computer Manager
Posts: 853
Joined: 01 Mar 2007, 17:00
17
Location: NY
Contact:

Post by shamir »

very good program keep up the great work baron. :D :wink:

Post Reply