I'm using mysql_real_escape_string()
and Htmlspecialchars()
functions in my PHP code to make it secure against sql-injection and XSS.
Is there any possibility to hack these functions?
If yes, can you describe how it can be done so that I can improve my code.
Thank you very much.