I just wrote my database class. I am sanitizing each parameter with mysql_real_escape_string() automatically.
This is the query output after sanitization:
Code: Select all
UPDATE PAGE SET content = 'Hello world. \';();\'' WHERE id = '11'So my question is, what could be the reason I can't see backslashes in my MYSQL table? Is it a normal thing?