Post to Jaiku using PHP
<?php $msg = 'this is just a test message using the ProjectX API for posting to Jaiku'; $xml_result = simplexml_load_file('http://rorbuilder.info/api/projectx.cgi?xml_project=<project name="jaiku"><methods><method name="post"><params><param var="user" val="jrobertson"/><param var="msg" val="' . $msg . '"/><param var="location" val="London"/><param var="apikey" val="9ee6ffd165r364492"/></params></method></methods></project>'); $method_result = $xml_result->post2jaiku; echo 'result' . $method_result; ?>
Reference: SimpleXML processing with PHP [ibm.com]