Zend PHP Slowness Programming Web Development by leprakhauns … who coded it in the Zend Framework using Doctorine and PHPTal. Killing the site after the action function it takes about…, but if you let it go through and load the PHPTal template it takes over 9 seconds. Is there anyway to… Re: Login System - Help me OOPize it! Programming Web Development by codejoust …themeforest.net/tutorials/smarty/[/url]. I like phptal more, and I think it's …file : [code=php] <?php require_once 'phptal.php'; require_once 'Data.class.php'; require_once 'Quizzer.…charset=utf-8'); $Quizzer = new Quizzer; $tpl = new PHPTAL('Templates/layout.xhtml'); /** Start Classes **/ $tpl->Quizzer … Re: Login System - Help me OOPize it! Programming Web Development by codejoust 1st off - to 'OOP'ize code, you need to seperate views from the actual code. 2nd - Use a database class, an application class, and a main class. 3rd - Try to find a good templating system. I like phptal, and smarty works well too. You also can just include php files that are html with php variables in it, but no logic, like wordpress. Re: Login System - Help me OOPize it! Programming Web Development by Stefano Mtangoo …! 3rd - Try to find a good templating system. I like phptal, and smarty works well too. --> I will check them… Re: PHP Templating vs TEMPLATE ENGINES Programming Web Development by Stefano Mtangoo Ok may be I have been too vague or misled you. If that is the case, I'm sorry. Let me try to clarify my point: I can use ready made engine like smarty/PHPTal. Another alternative is writting my own using SSI. And here my question goes, which is the best and what are pros and cons of each? Thanks Re: Zend PHP Slowness Programming Web Development by mschroeder You can use xdebug to profile the code: [url]http://www.xdebug.org/docs/profiler[/url] Re: Zend PHP Slowness Programming Web Development by leprakhauns I can't seem to install it since it isn't a dedicated server. Re: Zend PHP Slowness Programming Web Development by mschroeder There are other profiling tools but they're all going to require installing some kind of extension in my experience.