Subversion-Projekte lars-tiefland.em_wm

Revision

Revision 52 | Revision 92 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 52 Revision 54
Zeile 2... Zeile 2...
2
	class Team
2
	class Team
3
	{
3
	{
4
		var $t_id;
4
		var $t_id;
5
		var $t_name;
5
		var $t_name;
6
		var $t_group;
6
		var $t_group;
-
 
7
		var $t_aus;
Zeile 7... Zeile 8...
7
		
8
		
8
		function __construct($t_id)
9
		function __construct($t_id)
9
		{
10
		{
10
			global $db, $db_meld, $error, $meld;
11
			global $db, $db_meld, $error, $meld;
Zeile 22... Zeile 23...
22
			{
23
			{
23
				$row=$res->fetchRow();
24
				$row=$res->fetchRow();
24
				$this->t_id=$t_id;
25
				$this->t_id=$t_id;
25
				$this->t_name=$row["t_name"];
26
				$this->t_name=$row["t_name"];
26
				$this->t_group=$row["t_group"];
27
				$this->t_group=$row["t_group"];
-
 
28
				$this->t_aus=$row["t_aus"];
27
				return $this;
29
				return $this;
28
			}
30
			}
29
		}
31
		}
Zeile 30... Zeile 32...
30
		
32