How do I add the DMOZ data to my website? Is there a tutorial or can someone help? The data is listed here: http://rdf.dmoz.org/ Thanks, Brandon
Not aware of any tutorial. The rdf dump is really not good to serve off of directly. So you need to index it. Many seem to just dump it into an sql db, but the data is really more hierarchical then relational. What I do is use a custom GIST data type for postgresql for now, you should be able to find it by searching online, I can't recall off hand the site I got it from. So the answer depends alot on how far you want to take it, what traffic volume you plan to serve etc. As a start you need to parse the xml and build indexes of some sort, be it via a db or other method.
I checked hotscripts and found a few good ones. Thanks for all of the help, some was more indepth that I could go Brandon