<?= does not work on Windows XP Apache 2.2.x and PHP 5.2.4

<?= does not work on Windows XP Apache 2.2.x and PHP 5.2.4

am 28.09.2007 10:06:26 von nicos

When i do
echo "This works fine";
?>
Everything works fine. But when i do
nothing works. Any ideas?


Best Regards,
Nicos

Re: <?= does not work on Windows XP Apache 2.2.x and PHP 5.2.4

am 28.09.2007 10:09:30 von luiheidsgoeroe

On Fri, 28 Sep 2007 10:06:26 +0200, Nicos wrote:

> When i do
> > echo "This works fine";
> ?>
> Everything works fine. But when i do
> nothing works. Any ideas?

It relies on short_open_tags, which have been disabled by default for a =
=

very long time now. Don't rely on them, only keep the setting on for =

legacy code that still uses it for which you have no time to rewrite it,=
=

and use full tags in new code.
-- =

Rik Wasmus