有没有办法创造这样的东西?
例如,
if i type => {header} , php load website's navbar<br/>
if i type => {footer} , php load footer <br/>
if i type => {title} , php load data from database and set in site title , and etc...<br/>
谢谢,抱歉我的英语不好
<!doctype html>
<html>
<head>
<title>{title}</title>
</head>
<body>
<div class="header">{header}</div>
<table>
<tr>
<th>Company</th>
</tr>
{data_table}
</table>
<div class="footer">{footer}</div>
</body>
</html>
答案 0 :(得分:0)
您应该使用模板视图创建它。我在opencart中看到过类似的东西。
他们喜欢这种方式,请在下面给出
<!doctype html>
<html>
<head>
<title><?php $title; ?></title>
</head>
<body>
<div class="header"><?php echo $header; ?></div>
<table>
<tr>
<th>Company</th>
</tr>
<?php echo $data_table; ?>
</table>
<div class="footer"><?php echo $footer; ?></div>
</body>
</html>
他们分别为他们创建控制器和视图..