register('hello');
$s->service($HTTP_RAW_POST_DATA);
// this function is publicly available
function hello($name) {
return "Czesc $name !
(Czesc is 'hi' in Polish)";
}
// this function is not
function goodbye($name) {
return "Do widzenia $name !
(Dobronoc is 'Do widzenia' in Polish)";
}
?>