/ Published in: PHP
The function returns the "sanitized" version of user input. Use before putting variables into SQL code.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function sanitize($data) { { } return $data; } //example $username = sanitize($_POST['username']);
URL: tricksbycinger.blogspot.com