This code i use for SEO ;
<meta name="keywords" content="put-keyword">
<meta name="description" content="put-description">
<meta name="ABSTRACT" content="put-your-abstract">
<meta name="RATING" content="general">
<meta name="ROBOTS" content="index, follow">
<meta name="MSNBOT" content="index, follow">
<meta name="YAHOO SLURP" content="index, follow">
<meta name="GOOGLEBOT" content="index, follow">
<meta name="ArchitextSpider" content="index, follow">
<meta name="FAST-WebCrawler/" content="index, follow">
This is another code that i found for cutenews,but this include increase for search engine..
This hack adds the name of the category to the <meta keywords> and the title/category of the article to the <title> tag.
1. Add this at the beginning of your page:
<?php
function show_cat($category_id){
$cats = file("cutenews/data/category.db.php");
foreach($cats as $cat_line){
$cat_line_arr = explode("|", $cat_line);
if($cat_line_arr[0] == $category_id)
return $cat_line_arr[1];
}
}
function show_title($news_id){
if($_GET["archive"])
$file = file('cutenews/data/archives/'.$_GET["archive"].'.news.arch');
else $file = file('cutenews/data/news.txt');
foreach($file as $news){
$news_arr = explode('|', $news);
if($news_arr[0] == $news_id){
return $news_arr[2];
}
}
}
?>
2. Replace your <meta name="Keywords" content="..."> tag and your <title> tag with this:
<meta name="Keywords" content="<?=($_GET['ucat'] ? show_cat($_GET['ucat']) : ($_GET['category'] ? show_cat($_GET['category']) : 'Example')); ?>">
<title><?=($_GET['id'] ? 'Title: '.show_title($_GET['id']).' - category: '.show_cat($_GET['ucat']) : ($_GET['category'] ? show_cat($_GET['category']) : 'Example')); ?></title>
this link is referens from =http://democute.de.funpic.de/cute/example2.php?subaction=showfull&id=1141167663&archive=&start_from=&ucat=6]http://democute.de.funpic.de/cute/example2.php?subaction=showfull&id=1141167663&archive=&start_from=&ucat=6[/url]