Hello, hopefully this is a quick query....
I am trying to post a variable, which essentially contains an 'insert' string, along the lines of:
"insert into TABLE set VALUE='value1', VALUE2='value2';"
trouble is, when the next page recieves it, the inverted commas have been 'escaped' by backslashes, so this appears in the next page...:
"insert into TABLE set VALUE=\'value1\', VALUE2=\'value2\';"
Which then does not insert. Is there any way to avoid this?
Simarlarly, when I am posting a string from a text area, like this:
"This is a string, it's a nice string, I'll like it"
it gets posted like this:
"This is a string, it///'s a nice string, I///'ll like it"
with 3 backslashes.
Any ideas? Would be really appreciated...
Many thanks.