Subversion Repositories cryptochat

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
<?php
2
        function otherefucntion() {
3
                return "URI: ".$_SERVER['PHP_SELF'];
4
        }
5
 
6
        function otherefucntion2() {
7
                return otherefucntion();
8
        }
9
 
10
        require("sajax.php");
11
        sajax_export("otherefucntion", "otherefucntion2");
12
        sajax_handle_client_request(); 
13
?>