$name, 'size'=>$size); $soapclient = new soapclient('http://darwin.zoology.gla.ac.uk/~sid/taxonservice.php'); //Set as necesary. This is the proxy for the univeristy of glasgow //Set this for your proxy server, or delete line if not using one. //$soapclient->setHTTPProxy ('wwwcache.gla.ac.uk', '8080'); $result = $soapclient->call('getImageHREF',$parameters); // Here the $result array obtained from the webservice is being used to display images. if ($result['num'] == 0) { echo '

No results available

'; } else { echo ' '; for ($i = 0; $i < $result['num']; $i++) { echo ' '; } echo '
Original file

' . $result['names'][$i] . '

'; } echo ' '; print_r($result); echo ' '; // kill object unset($soapclient); } else { ?>

Enter a taxon name