Try to submit a query in Wikipedia by using snoopy class in PHP but fail
<?php
include "Snoopy.class.php";
$snoopy = new Snoopy;
$snoopy->agent = "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5 FirePHP/0.2.1";
$snoopy->referer = "http://www.google.com/";
$url = "http://www.wikipedia.org/";
$data["search"] = "Intel";
$data["language"] = "en";
$data["go"] = "submit";
$snoopy->submit($url, $data);
echo $snoopy->results;
?>
It's seems can't submit the query to wikipedia and return error. What's wrong with the code above? Thanks!!
Here is the error message from wiki