################################### Alternate PHP Syntax for View Files ################################### If you do not utilize CodeIgniter's :doc:`template engine <../libraries/parser>`, you'll be using pure PHP in your View files. To minimize the PHP code in these files, and to make it easier to identify the code blocks it is recommended that you use PHPs alternative syntax for control structures and short tag echo statements. If you are not familiar with this syntax, it allows you to eliminate the braces from your code, and eliminate "echo" statements. Alternative Echos ================= Normally to echo, or print out a variable you would do this:: With the alternative syntax you can instead do it this way:: =$variable?> Alternative Control Structures ============================== Controls structures, like if, for, foreach, and while can be written in a simplified format as well. Here is an example using ``foreach``::