[thelist] PHP Question

Martin Kuplens-Ewart martin at takingitglobal.org
Tue Dec 11 10:07:14 CST 2001


Okay... Easy fix...

<?= echo $REQUEST_URI; ?>

Is broken. Badly.

Good job using the <?= shortcut - cleans your code up really nicely BUT.
It is a shortcut for the echo command. Which means that your putting in
echo and then the ; will break it. Therefore, what you want that tag to
read as is:

<?=$REQUEST_URI?>

And that should work.

-m






More information about the thelist mailing list