I'm creating a PHP application within Heroku. The problem is Heroku doesn't understand some tags as PHP. For example, <?=$some_var?> is not recognized as PHP, but as pure HTML.
Do I have to configure something or use <?php echo $some_var ?>, for example, instead?