RESTful php api framework for creating dynamic web applications
qoob/api/test.php
<?php
class test {
function blah() {
echo "<h1>open qoob</h1><p>blah test method.</p>";
}
function dating($args) {
echo '<h1>open qoob</h1><p>date test method.<pre>'.print_r($args, true)."</pre></p>";
}
}
?>