我想用php为我的网站创建一个动态的标题页,但我不能这样做。请告诉我更好的建议我如何学习它并给我教程链接。
我解释
这是我的index.php文件,另一个文件是header_final.php
。在header_final.php的底部有一些像家一样的按钮,如何申请,座位计划。我想这样做,当一个按钮点击,然后不同的页面标题即将到来。这是我的问题。请帮帮我......
的index.php
<?php
include("include/header_final.php");
?>
<div id="page">
<div id="page-bgtop">
<div id="page-bgbtm">
<div id="content">
<div class="post">
<h2 class="title"><a href="#">Home</a></h2><br>
<div class="entry">
<p><img src="images/img08.jpg" width="538" height="200" alt="" /></p>
</div>
</div>
<div class="post">
</div>
<div style="clear: both;"> </div>
</div>
<!-- end #content -->
<?php
include ("include/footer_final.php");
?>
header_final.php
<html>
<head>
<meta name="keywords" content="" />
<meta name="description" content="" />
<title> </title>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="logo">
</div>
<div id="menu">
<ul>
<li class="first current_page_item"><a href="index.php">Home</a></li>
<li><a href="apply.php">How to Apply</a></li>
</ul>
</div>
</div>
答案 0 :(得分:3)
<head>
<title> <?php echo "My dynamic title gotten from somewhere";?> </title>
</head>