Hi,
if I have variable from form:
I want to insert its value to mysql, but there can be php code which hacks my all script...PHP Code:$name = $_POST['name'];
Will it be safe if I will do that?
What I knew before, tjis line helped to keep safe the value from other script, or I'm wrong?PHP Code:$name = mysql_real_escape_string($name);
