Cara membuat tag tittle php menjadi dinamis


Assalamu'alaikum wr wb
Kali ini saya akan share bagaimana caranya membuat tag tittle menjadi dinamis.
Berikut ini syntaxnya.
____________________________________
<?php

$title = "My Page.";
$keywords = "Georgia, internet, homeland.";
$description = "My personal page has fun.";
require_once("header.php");

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php if(isset($title)) { print $title; } else { print "Default title goes here"; } ?></title>
<meta name="keywords" content="<?php if(isset($keywords)) { print $keywords; } else { print "keyword1,keyword2,keyword3,"; } ?>" />
<meta name="description" content="<?php if(isset($description)) { print $description; } else { print "Default description tag goes here."; } ?>" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="css/panev.css" rel="stylesheet" type="text/css" media="all" />

</head>
<body>
</body>
</html>
____________________________________
Semoga bermanfaat.
Cara membuat tag tittle php menjadi dinamis Cara membuat tag tittle php menjadi dinamis Reviewed by Syawaluddin Amin, S.Kom on Januari 12, 2014 Rating: 5

Tidak ada komentar:

Diberdayakan oleh Blogger.