Пример #1
0
 function token_select_ordby($arr, $orderby, $limit)
 {
     $str = DbConn::table_select_ordby('token', $arr, $orderby, $limit);
     $this->con = DbConn::initDb();
     return mysql_query($str, $this->con);
 }
Пример #2
0
 function userinfo_orderby_select($orderby, $limit)
 {
     $str = DbConn::table_select_ordby('userinfo', null, $orderby, $limit);
     $this->con = DbConn::initDb();
     return mysql_query($str, $this->con);
 }
Пример #3
0
 function keyword_select_oderby($orderby)
 {
     $str = DbConn::table_select_ordby('keyword', null, $orderby, 1);
     $this->con = DbConn::initDb();
     return mysql_query($str, $this->con);
 }