classe BDB et sa methode listTables()
[bazdig.git] / lib / user.php
blob556bb7cbab90306effc7668b6a83e4c4c665494f
1 <?php
2 class User
4 var $id;
5 var $password;
7 function User($id = NULL)
9 if (!$id) {
13 function session_start()
17 function has_right($right=NULL)
20 if (!$right) {
23 $user = new User
24 $rightQuery = new Query;
25 $rightQuery->select("id")->from("users");
26 $rightQuery->where(array('id' => $this->id, 'password' => $this->password));