html helper

Html Helper Class

Html Helper Class

One of the things that can make your scripts really hard to read and take up much space are inline HTML tags. This helper class makes it possible to write inline html tags in a really simple an clean way. Take for example the following code. It is used to show a select box and the selected variable is to choose a select item. <?php $selected = 'green' ?><br /><select name="colors" id="colors" /><br /> <opti...