PDA

View Full Version : عنوان های متفاوت در یک فایل header



zahra-j
چهارشنبه 05 آذر 1393, 10:57 صبح
سلام
چطور میشود وقتی یک فایل header داریم که در بالای صفحات include می کنیم عنوان های متفاوت داد؟

bagherok
چهارشنبه 05 آذر 1393, 12:06 عصر
//index.php
<html>
<head>
<title>عنوان</title>
<link href="files/style.css" rel="stylesheet" type="text/css">
</head>
<body>
.
.
.
</body>
</html>
-----------
//index.php
<html>
<head>
<title>عنوان</title>
<?php include('header.php');?>
</head>
<body>
.
.
.
</body>
</html>
-------------
//header.php
<link href="files/style.css" rel="stylesheet" type="text/css">


یا



//index.php
<?php
$page_title='عنوان';
include('header.php');
?>
<body>
.
.
.
</body>
</html>
----------------------------------
//header.php
<html>
<head>
<title><?php echo $page_title;?></title>
<link href="files/style.css" rel="stylesheet" type="text/css">
</head>
<body>
.
.
.
</body>
</html>