How can we separate Logic from presentation without using any template engine (traditional php-not OOP) Thank in advance
PHP itself can be used as a template engine. Just put all your logic before you output anything. Put simply:
echo
and foreach
to output the data you put into variables in step 2.