Is there a way to put HTML into mysql, without it placing shashes before quotes.. i just want it to go in exactly as it is..
Thanks!
putting HTML in mysql
Moderator: General Moderators
Code: Select all
mysql_real_escape_string($HTML);- dibyendrah
- Forum Contributor
- Posts: 491
- Joined: Wed Oct 19, 2005 5:14 am
- Location: Nepal
- Contact:
mysql_escape_strings also prepends the backslashes to the special character while inserting the records in mysql. isn't that so ?
Dibyendra
Dibyendra
agtlewis wrote:Code: Select all
mysql_real_escape_string($HTML);