Please contact (802) 224 - 6525 for price quotes and programming support.
Follow this link for a resume of php and Mysql Programing experience
Digg This!

0 Members and 1 Guest are viewing this topic. « previous next »

Pages: [1] Go Down Print
Author Topic: Meta keyword for SEO ??  (Read 3974 times)
websitedesigner
Newbie
*

Karma: 0
Offline Offline

Posts: 12


View Profile
« on: May 27, 2007, 11:58:39 PM »

Can sum1 tell how to create a good meta keyword for SEO ??
I would like to insert Meta Tags in my web page..any hack for meta-tags, it would be great!
Logged
softcode
Newbie
*

Karma: 0
Offline Offline

Posts: 10


View Profile
« Reply #1 on: May 28, 2007, 12:02:30 AM »

This code i use for SEO ;

Quote
<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:

Quote
<?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:

Quote
<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]
« Last Edit: May 28, 2007, 12:06:09 AM by softcode » Logged
Whomics09
Newbie
*

Karma: 0
Offline Offline

Gender: Male
Posts: 2


View Profile WWW
« Reply #2 on: December 08, 2009, 08:28:05 PM »

I put em in, but would like to know how much they important they are for SEO
Logged
John Anderson
Vermont Internet Design Admin
Administrator
Full Member
*****

Karma: 0
Offline Offline

Gender: Male
Posts: 238



View Profile WWW
« Reply #3 on: December 11, 2009, 07:05:11 PM »

Not really important at all, most important is the quality of sites linking to yours.
Logged

Pages: [1] Go Up Print 
« previous next »
Jump to:  

Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC
TinyPortal v0.9.8 © Bloc
Christmas2006 design by Bloc
Page created in 0.231 seconds with 30 queries.