所以我一直试图理解我提到的一些PHP / HTML代码,但它根本不起作用,我缺少什么?
<?php
$page = 'Start';
include 'themes/battlefield4/header.php';
?>
<h1><?php $page ?></h1>
<?php
include 'themes/battlefield4/footer.php';
?>
答案 0 :(得分:2)
您必须echo
或print
任何输出
<h1><?php echo $page ?></h1>