Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我一直试图理解我过来的一些 PHP/HTML 代码,但它根本不起作用,我错过了什么?
<?php $page = 'Start'; include 'themes/battlefield4/header.php'; ?> <h1><?php $page ?></h1> <?php include 'themes/battlefield4/footer.php'; ?>
你必须echo或print任何输出
echo
print
<h1><?php echo $page ?></h1>