我正在尝试在我的网站上的某些页面上获得我需要的输出。
在 meta.php 我有:
<?php $title1 = "this is the title for this $address"; ?>
在 index.php 我有:
<?PHP include('meta.php'); ?>
<?php $address = "address one"; ?>
并在<head>
部分:
<?php echo $title1; ?>
问题是输出不显示$address
我在那里想念什么?