2011-08-09 60 views
0

我有這個簡單的代碼:問題文件的簡寫PHP的標籤在蛋糕PHP

<html> 
<head> 
<title>My Cake Blog Application</title> 
<?=$html->css('styles');?> 
</head> 
<body> 
<div id="container"> 
<div id="content"> 
<?=$content_for_layout;?> 
</div> 
</div> 
</body> 
</html> 

我在app /視圖/佈局保存它 命名它default.thtml中 在瀏覽器中的輸出只顯示我CSS( '樣式');

也是我在app/Webroot公司/ CSS styles.css的

它不是在我的瀏覽器工作的話,我想這字符串開頭和結尾:<?php echo();?> 又沒有工作

<html> 
<head> 
<title>My Cake Blog Application</title> 
<?php=$html->css('styles'); echo();?> 
</head> 
<body> 
<div id="container"> 
<div id="content"> 
<?php=$content_for_layout; echo();?> 
</div> 
</div> 
</body> 
</html> 
+0

我發現我的問題!我使用了這個:'<?php echo $ content_for_layout; ?>' – Nickool

+0

和這一個:'<?php echo $ html-> css('styles'); ?>' – Nickool

+0

很奇怪,在那裏那些沒有工作,但它的作品像一個魅力:) – Nickool

回答

0
<html> 
<head> 
<title>My Cake Blog Application</title> 
<?php echo $html->css('styles'); ?> 
</head> 
<body> 
<div id="container"> 
<div id="content"> 
<?php echo $content_for_layout; ?> 
</div> 
</div> 
</body> 
</html>