Subversion Repositories Applications.papyrus

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
<?php
2
class testClass {
3
 
4
	function myecho ($somestring) {
5
		return "<P>" . $somestring . "</P>";
6
	}
7
 
8
	function contentB () {
9
		return "<P>Content B</P>";
10
	}
11
 
12
	function contentC () {
13
		return "<P>Content C</P>";
14
	}
15
 
16
	function add($x,$y) {
17
		return $x + $y;
18
	}
19
}
20
?>