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>