add fetchmode

This commit is contained in:
wlx 2012-03-21 10:07:32 +00:00
parent 219518ce83
commit 6d650065d1
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ class member
else{ else{
$sql = "select username,password from users where username='$uname'"; $sql = "select username,password from users where username='$uname'";
$rs = $this->db->query($sql); $rs = $this->db->query($sql);
$this->db->setFetchMode(Zend_Db::FETCH_ARRAY);
$row = $rs->fetch(); $row = $rs->fetch();
$scr = $this->makescr($row['username'],$row['password']); $scr = $this->makescr($row['username'],$row['password']);