Im passing a variable to a page by a URL parameter, ie "page.php?thingy=wotsit"
It woks fine, only sometimes the parameter includes an apostrophe, in which case the title of the page displays it as \' (backslash apostophe). Is there a way I can avoid this?
The code to display it is:
<?php
print ("$thingy");
?>