Posted by Erwin Moller on 01/02/07 16:02
lawrence k wrote:
> I'm looking at the template examples on this page:
>
> http://qcodo.com/
>
> I see stuff like
>
> <?= $_REQUEST["home"]; ?>
>
> I've never seen the "<?=" before. It causes the value of the tag to be
> echoed to the screen?
Hi,
<?= only works if short_open_tags is set to true.
In that case it is translated to:
<? echo
Regards,
Erwin Moller
[Back to original message]
|