Subversion Repositories Applications.papyrus

Rev

Blame | Last modification | View Log | RSS feed

<?php
class testClass {

        function myecho ($somestring) {
                return "<P>" . $somestring . "</P>";
        }

        function contentB () {
                return "<P>Content B</P>";
        }

        function contentC () {
                return "<P>Content C</P>";
        }

        function add($x,$y) {
                return $x + $y;
        }
}
?>