Menu

#1 use of short php tags is not always supported

open
nobody
None
5
2004-07-28
2004-07-28
Anonymous
No

using <?=$varName?> is not a good solution. Most PHP
implementations turn off support for short tags.

replace <?=$varName?> with <?php echo $varname; ?> for
better support.

Discussion


Log in to post a comment.