Very old and bad way to do Anti-SQL Injection Function


/ Published in: PHP
Save to your folder(s)

Don't do it this way. This was written so long ago.


Copy this code and paste it in your HTML
  1. function cleanuserinput($dirty){
  2. }else{
  3. $clean = mysql_real_escape_string($dirty);
  4. }
  5. return $clean;
  6. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.