Nuke Evolution Development and Support

Creating a fast templating class

It is often easier when creating something pretty much from scratch to use some form of templating system rather than mixing layout and logic. It just makes things easier to work with. Several packages exist, such as Smarty, but why add so much bloat and slow down your code in order to do so? Additional syntax has to be parsed, which costs time. PHP will...