I\'ve seen this \"-> \" elsewhere used in php. One of the books I used to learn PHP has this in it, but it is never explained. What does it do, how does it work!
The
$html is the variable, html is the class.
$html = new html;
puts a new object with class html in the variable $html. Otherwise, that's correct.