我使用PHP 5.2
进行保存,此代码运行正常
<?PHP
// after connection to DB and getting title from setting table
$title = $line['wptitle'];
?>
<title><?=$title?></title>
但是在我开始使用带有PHP 5.3
的Vertrigo Serv之后,上面的代码不再显示标题,只有当我将其编辑为
<title><?PHP echo $title; ?></title>
<?=$title?>
不再可接受吗?
答案 0 :(得分:1)
请确保您在php.ini文件中有:
short_open_tag=On
你也可以输入.htaccess文件:
php_flag short_open_tag on