Troy,
Thanks a lot for the response. I was wondering if anyone was going to respond.
Some things have changed since my last post. I have about 155+ categories (individual names) and each has a list of keywords.
I'll want to compare one list of keywords with each of the category’s lists. I've already designed the database structure (normalized, I think), so I'm not so worried about that any longer.
As for the tag extractor, I have a very simple solution:
[PHP]while (!feof ($fp))
{
$buf = trim(fgets($fp, 4096));
$cont .= $buf;
}
preg_match("/$start(.*)$end/s",$cont,$match);
echo 'Title<br>';
echo $match[1];
echo '<br><br>';
echo 'URL<br>';[/PHP]