Subversion Repositories cryptochat

Compare Revisions

Regard whitespace Rev 1 → Rev 2

/trunk/dependencies/sajax/php/example_otheruri.php
0,0 → 1,13
<?php
function otherefucntion() {
return "URI: ".$_SERVER['PHP_SELF'];
}
function otherefucntion2() {
return otherefucntion();
}
require("sajax.php");
sajax_export("otherefucntion", "otherefucntion2");
sajax_handle_client_request();
?>