Navigation :

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




Site Sponsors :

Bookmark :

Links :

programmershelp
finance products
low cost magazines

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


Simple metatag generator

This is a simpler version of our metatag generator and only generates code for the description and keywords meta tags

<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;";
?>