2015-08-26 146 views
0

這裏是PHP腳本需要一個幫助PHP編碼

<h1><?php if(isset($this->movie['title'])): echo $this->movie['title']; endif;?></h1>

它僅顯示VS標題

我想加入換句話說標題 之前,所以我嘗試這

<h1><?php if(isset($this->movie['title'])): echo Watch $this->movie['title']; endif;?></h1> 

但不工作可以任何一個請告訴我這

回答

4

一個小的語法修正的解決方案, 試試這個

<h1><?php if(isset($this->movie['title'])): echo "Watch". $this->movie['title']; endif;?></h1> 
+0

Thankx如需幫助曾任職添加引號 –

1

你用錯誤的語法。使用此

<h1><?php 
if(isset($this->movie['title'])) 
    echo "Watch " . $this->movie['title'];?></h1> 
0

你忘了在WATCH

<h1><?php 
if(isset($this->movie['title'])) 
    echo "Watch". $this->movie['title']; endif;?> 
</h1>