Hi
I have two questions:
- How do you remove non-special characters from a string?
- How do you remove all instances of html from a string?
For example let's say you have the following string:
$str = "Check this out <a href=�http://www.somewebsite.com�>Somewebsite</a>, this is a great website";
How do you remove characters such as "�" from this string, as well as the html code?
Thank you