Forum Moderators: coopster

Message Too Old, No Replies

Stop $ POST program

         

Titan

3:44 pm on Apr 15, 2009 (gmt 0)

10+ Year Member



Does anyone know the name of a Program that you use to stop $_POST and you can change all the variables, really useful for hacking, i remember using it before but i just forgot the name, someone hacked my site so i need to check how, and how to fix it.

many thanks

rocknbil

5:57 pm on Apr 15, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Welcome aboard Titan, you don't need to stop post. You just use $_GET, if that's what your program uses, and ignore $_POST. Or, if you want,

if ($_POST) {
header("content-type:text/html\n\n");
print "Post method not allowed"; // or echo
exit;
}