I want to remove forward slash from below mentioned string using php
Output
$userheightfeet1 = $_POST["userheightfeet"];
5\'10
Expected O/P
5'10
Use function
str_replace(find,replace,string,count)
http://www.w3schools.com/php/func_string_str_replace.asp
Replace what ever character you want to replace with "".