I am working on a website and I have a php editor that automatically adds \ to certain things. I was aware of the stripslashes()
function and I know it can be used in a way such as: stripslashes($test)
but I am including something and I do not know how to strip the slashes from the Page I am including. Here is my include code that I am using:
<?php include $_SERVER['DOCUMENT_ROOT']."/newseditor/BlogTitle.php"; ?>
So how would I stripslashes from this? Thanks for reading and I appreciate all help I recieve.