Forum Moderators: open
Here are the questions...
1) If content is king and tying content to keywords and titles, headings and URLs then it stands to reason that it doesn't do much good to come up with one set of meta tags to put in a header and use with an include on every page in the site.... this either blows away one of the most fabulous time saving features for building and maintaining dynamic sites or I need to come up with a scheme where I store unique metas for each page and dynamically write them into the header?
2) It isn't clear to me whether spiders are able to see content which is stored in a database.... one of my sites has several hundred articles which have been stored in a database to facillitate non technical staff maintaining it with form interfaces. It would seem that this type of material would be just the good stuff needed to get the site recognised but it may not be visible? Not sure I know a workaround for this one?
1) If content is king and tying content to keywords and titles, headings and URLs then it stands to reason that it doesn't do much good to come up with one set of meta tags to put in a header and use with an include on every page in the site.... this either blows away one of the most fabulous time saving features for building and maintaining dynamic sites or I need to come up with a scheme where I store unique metas for each page and dynamically write them into the header?
First of all, meta keywords and meta description just aren't that important these days. You won't lose much (if anything) by leaving them out completely. That said, I've found it relatively easy to generate them dynamically.
2) It isn't clear to me whether spiders are able to see content which is stored in a database.... one of my sites has several hundred articles which have been stored in a database to facillitate non technical staff maintaining it with form interfaces. It would seem that this type of material would be just the good stuff needed to get the site recognised but it may not be visible? Not sure I know a workaround for this one?
As long as these articles are visible in HTML, use server-side scripting, and are well-linked, they'll be found and spidered. Of course spiders can't directly crawl your database, which is why you have to pay attention to link structures and make sure there are still links to old/archived material that you think might still be useful to users and want to get spidered. I'd also recommend checking pages in Sim Spider [searchengineworld.com] to see what spiders see when crawling your site.
In PHP:
<? include "config.php";?>
<head>
<title><? echo $title;?></title>
</head>
<body>
<h1><? echo $title;?></h1>
...
"2) It isn't clear to me whether spiders are able to see content which is stored in a database.... one of my sites has several hundred articles which have been stored in a database to facillitate non technical staff maintaining it with form interfaces. It would seem that this type of material would be just the good stuff needed to get the site recognised but it may not be visible? Not sure I know a workaround for this one?"
mod_rewrite
Visit the PHP forum :)
WBF