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.
Log in to post a comment.