-3

所以我一直试图理解我过来的一些 PHP/HTML 代码,但它根本不起作用,我错过了什么?

<?php 
$page = 'Start';

include 'themes/battlefield4/header.php';
?>

<h1><?php $page ?></h1>

<?php
include 'themes/battlefield4/footer.php';
?>
4

1 回答 1

2

你必须echoprint任何输出

<h1><?php echo $page ?></h1>
于 2013-11-09T04:29:53.130 回答