使用PHP函数

时间:2016-07-17 19:04:14

标签: php html

我试图创建一些网站,在每个页面上我都会包含来自header.php的内容,我可以使用PHP作为元数据(描述和关键字)吗?我想,依赖于哪个是当前页面,从数据库中提取描述和关键字并在

中使用它们

假设函数getopis(),gettag()和gettitle()工作正常,或者使用数据库中的元数据有不同的方式,这样可以正常工作吗?

这是header.php文件

<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<?php
include("scripts.php");
$desc=getopis();
$keyw=gettag();
echo "<meta name='description' content='$desc'/>
<meta name='keywords' content='$keyw' />";
?>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<link rel="shortcut icon" type="image/x-icon" href="img/fav.jpeg"/>
<title><?php echo gettitle();?></title>

0 个答案:

没有答案