16 Şubat 2014 Pazar

PHP - Meta Tag Oluşturucu

Sitenizin tanımlanmasında en büyük yardımcı olan arama motorlarının özellikle aradığı meta tag kısmını oluştururken kodlarla uğraşmayın yazdığım kod betiği sayesinde sadece gerekli bilgileri yazarak hazır kodunuzu alıp gerekli html tagları arasına yerleştirebilirsiniz.

[caption id="attachment_1648" align="aligncenter" width="614"]meta tag creator meta tag creator[/caption]

 
<?php 

echo '
<form action="index.php" method="post">
<center>
<b>Sitenizin Başlığını Girin</b><br><br>
<input type="text" name="title" style="height:30px; width:160px;"><br><br>
<b>Sitenizin Açıklamasını Girin (Description)</b><br><br>
<input type="text" name="description" style="height:30px; width:160px;"><br><br>
<b>Sitenizin Anahtar Kelimelerini Girin (Kelimeler Arası Virgül Olacak, Keywords)</b><br><br>
<input type="text" name="keywords" style="height:30px; width:160px;"><br><br>
<b>Sitenizin Yazar Adını Girin</b><br><br>
<input type="text" name="author" style="height:30px; width:160px;"><br><br>
<input type="submit" value="Oluştur" style="width:160px; height:60px;">
</center>
</form>
';

$title = $_POST["title"];
$description = $_POST["description"];
$keywords = $_POST["keywords"];
$author = $_POST["author"];

?>

<center>
<textarea cols="50" rows="10">
<title><?php echo $title; ?></title>
<meta name="description" content="<?php echo $description; ?>"/>
<meta name="keywords" content="<?php echo $keywords; ?>"/>
<meta name="author" content="<?php echo $author; ?>"/>
</textarea>
</center>

 

 

Share

& Comment

0 yorum:

Yorum Gönder

 

Copyright © 2015 Papiculo !™ is a registered trademark.

Designed by Templateism. Hosted on Blogger Platform.