Hello,
I need to do a variable that when people will try to do this :
bla.php?variable=blabla
the $variable will not get the 'blabla'...
here is an example :
$id = 3;
mysql_query("SELECT * FROM bla WHERE id='$id'");
I need that $id will allways will be 3 so hackers dont do bla.php?id=44 or something like that.
can I do that ?
thanks !