mrbuter Posted June 27, 2008 Share Posted June 27, 2008 Am I doing it wrong? This sounds like the simplest thing ever but it isn't removing my backslashes! (\) $something = stripslashes($something); $something is previously set through a form. If I include backslashes it will not remove them! I also have str_replace removing all letters and other characters (including the normal slash). But since I can't seem to include the backslash in that array I tried using stripslashes to no avail. Link to comment https://forums.phpfreaks.com/topic/112245-stripslashes-not-working/ Share on other sites More sharing options...
br0ken Posted June 27, 2008 Share Posted June 27, 2008 To remove backslashes using str_replace you would use the following: $var = str_replace("\\", "", $var); Link to comment https://forums.phpfreaks.com/topic/112245-stripslashes-not-working/#findComment-576302 Share on other sites More sharing options...
mrbuter Posted June 27, 2008 Author Share Posted June 27, 2008 thank you!!!! Link to comment https://forums.phpfreaks.com/topic/112245-stripslashes-not-working/#findComment-576304 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.