我正在尝试做什么:
我有两个文件:一个是 header.php ,其中包含( by php include )到我的第二个文件 content.php
我将使用我的 header.php 和许多不同的“内容”文件,只是为了让您知道
现在,我有一个 div ,它将显示 content.php 提供的标题文字以及包含 header.php <的任何其他网页/ strong>:<div class="title"> </div>
此 div 仅 header.php 中的 。
我的问题是我不知道如何将文字添加到 content.php 的 header.php div区域 <div class="title"> </div>
中 header.php 。
<div class="title"></div>
)<div class="title"> <div>
区域)我的问题是:我怎么能用php做到这一点?
我对php或任何类型的编码知之甚少。我刚刚站了起来,现在我很困惑。所以,如果有人能够以简化的方式解释如何做到这一点,我将非常感激。
答案 0 :(得分:0)
一个非常基本的简单系统可以这样工作:
的header.php:
<div class="title"><?php if (isset($title)) { echo $title; } ?></div>
content.php:
<?php
$title = 'This is my content page';
?>
blah blah blah html here.
<?php include('header.php'); ?>
blah blah more html her e
header.php将检查是否存在“title”变量,并在需要时输出。如果没有标题可变,你得到一个空的div。
内容页面负责设置标题变量。当包含标题页时,它将与content.php代码位于相同的“范围”中,选择变量并运行它。