Quote Originally Posted by PCManiac View Post
Yet, I have a question JMZ, what does the ([^>]+) and ([^<]+) means? I have seen it over and over on other sites but I can't find a proper description for that.
Code: 
[^<]+
Means one or more characters which aren't '<'.
Quick way of matching things inside tags, but it will break with nested tags.