[caption id="attachment_1648" align="aligncenter" width="614"]

<?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>
0 yorum:
Yorum Gönder