Php without start/end tags?
php
Solution
No. The interpreter needs the tags to know what to parse and what not to.
Problem
Is it possible to have php not to require the begin/end tags (`<?php ?>`) for some of the files? The code should be interpreted as php by default. I'm aware that I can leave out the end tag (`?>`).