vote up 1 vote down star

Hi guys I wish to get information for entries I have in my database from wikipedia like for example some stadiums and country information. I'm using Zend Framework and also how would I be able to handle queries that return multiple ambiguous entries or the like.. I would like all the help I can get here...

flag

66% accept rate

2 Answers

vote up 2 vote down check

Do a simple HTTP request to the article you are looking to import. Here's a good library which might help with parsing the HTML, though there are dozens of solutions for that as well, including using the standard DOM model which is provided by php.

<?php
require_once "HTTP/Request.php";

$req =& new HTTP_Request("http://www.yahoo.com/");
if (!PEAR::isError($req->sendRequest())) {
    echo $req->getResponseBody();
}
?>

Note, you will be locked out of the site if your traffic levels are deemed too high. (If you want a HUGE number of articles, download the database)

link|flag
Whoa I didn't know that you could do that - I've downloaded the database and started a new thread on the meticulous task of importing it - thanks for the tip man :) – Ali May 16 at 9:44
vote up 7 vote down

Wikipedia based on MediaWiki, that have API.

You can try MediaWiki API on Wikipedia - http://en.wikipedia.org/w/api.php

Documentation for MediaWiki API - http://www.mediawiki.org/wiki/API

link|flag
Thats cool but are there any tutorials or starter code to get started. Basically I don't have the exact name of the article just an entry in my database and I was wondering if I could get a corresponding article from the wikipedia. – Ali May 11 at 11:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.