How to make a simple HTML template engine in PHP

Introduction – What is a template engine? A template engine is used to separate the presentation from the business logic. A good developer knows this is very important – not only it allows for delegating responsibilities (the designer works on the presentation layer while the programmer works on the business logic), but it also provides …

PHP Error: Fatal error: Unable to read X bytes in Y.php on line 0

“Fatal error: Unable to read X bytes in Y.php on line 0″ is an error I got once after moving a site to another server. The file was encoded with Zend Optimizer so I could not check what is happening on line 0 that could make any problems. After doing some research I found that …