cakephp中元素中包含的html助手无法使用wamp


html helper included in elements in cakephp not working with wamp

我正在使用cakephp。我为一个网站设计了一个主页。这里我有插件元素,即header.ctp、main.ctp和footer.ctp。我使用$this->元素在default.ctp中调用它们。在每个元素中,我都使用了html助手likeHtml->image('Logo.png');?>现在,当我在xxamp上部署它时,它的工作正如预期的那样但当我将相同的迁移到wamp时,它没有给出输出而不是显示的图像

 <? echo $this->Html->image('Logo.png');?>

它显示文本

 Html->image('Logo.png');?>

我使用的是cakehp2.4.2。示例php 5.3.5

wamp:php 5.3.0

我开始工作了。。。我刚换了

 <? ........   ?> with 
<?php ......  ?>

同时声明php代码。:)