short-open-tags

zend framework / view <?= does not work ? why ?

Strange.. with my installation of the Zend Framework <?php echo $this->user; ?> works fine but <?= $this->user; ?> does not work Anyone have an idea what is the problem ? ...

<?= ?> special tags in php

can anybody please explain what are these special tags in php? <?= ?> I couldn't find it on google. ...

PHP str_replace/preg_replace problem with php open tags

I'm trying to replace something like: $text = "Hello <--name--> !!"; echo str_replace("--","?",$text); Expected: Hello <?name?> !! Result: Hello !! (I'm checking the source code, and I have short open tags enabled) I have tried so many ways but it seems that I can't never have as result any <? (or <?php) string. I think it may ...