01-14-2012, 04:46 PM
(01-14-2012, 04:31 PM)Strafeness Wrote: "INSERT INTO Users (Username, Password) //What you what to be inserted.
VALUES (mysql_reaL_escape_string($user), (mysql_reaL_escape_string($pass))");
Really?
PHP Code:
function sanitise($input){
return htmlentities(strip_tags(mysql_real_escape_string($input)));
}