Home | Scripts | Tutorials | Books | Hosting | Forums | Links|

Navigation:

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links






 
 

SPONSORS



 
 

Simple Metatag Generator

This is a simpler version of our metatag generator and only generates code for the description and keywords meta tags . These are the most important meta tags .

Code :

<form action="metatag.php" method="POST">
<font face="Arial" size="2" color="Black"><b>Description:</b></font><br>
<input type="text" size="35" name="description">
<br>
<font face="Arial" size="2" color="Black"><b>Keywords(Seperate with
commas):</b></font><br>
<input type="text" size="35" name="keywords">
<br>
<input type="submit" value="Generate">
<input type="reset" value="Reset">

</form>
<p>
<?
//generate meta tags
echo "Place the following html between the head tags of your site to add your mega tags<br>";
echo "<BR>";
echo "&lt;META name=\"description\" content=\"$description\"&gt;<BR>";
echo "&lt;META name=\"keywords\" content=\"$keywords\"&gt;";
?>

Example :

Description:

Keywords(Seperate with commas):

Place the following html between the head tags of your site to add your mega tags

<META name="description" content="">
<META name="keywords" content="">