The PHP client allows you to easily send errors via HTTP. The PHP client can be used independently, or as part of a greater implementation. Quick example:
<?php
include("arecibo.php");
$fields = array(
"account" => "yourpublicaccountnumber",
"status" => "403",
"url" => "http://badphpapp.org"
);
post($fields);
?>
Source can be checked out of SVN at:
svn co http://arecibo.svn.beanstalkapp.com/clients/trunk/php/
Tested on PHP 5.2.6. If using the http client, permission to make a HTTP post to the Arecibo server is needed.
No values are automatically set.
The PHP library at this point is very simple. Any contributions gratefully accepted.
All the sample clients are in SVN, if you create your own client, please let us know.