Looking to parse all tags out of a string... $string = "<img src="location.jgp"> Look at this image <a href="somepage">Link here</a>"; $string = noTags($string); Can someone write this function?
Ah ... perfect .. stupid me ... However, what if the problem string is showing up as <img src= ... > ?? Thats why my very tedious script wasnt working before, come to find out, and strip_tags() doesnt work with this either. Thanks!