Hi. I have a free-for-all posting page, coded in PHP. However, whenever anyone inserts an apostrophe (e.g. Mike's Page) it gets converted in to \' (e.g. Mike\'s Page). Is there any way to modify my PHP code to fix this?
There's a php.ini setting: magic_quotes_gpc. Switch that off.
Alternatively, a judicious use of stripslashes() can work wonders.