当前位置: 首页>>代码示例>>PHP>>正文


PHP Items::find_by_sql方法代码示例

本文整理汇总了PHP中Items::find_by_sql方法的典型用法代码示例。如果您正苦于以下问题:PHP Items::find_by_sql方法的具体用法?PHP Items::find_by_sql怎么用?PHP Items::find_by_sql使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Items的用法示例。


在下文中一共展示了Items::find_by_sql方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getList

 /**
  * the getList method is used to 
  * pupolate the listing table 
  */
 public function getList($id = "", $pg)
 {
     $purl = array();
     if (isset($_GET['url'])) {
         $purl = $_GET['url'];
         $purl = rtrim($purl);
         $purl = explode('/', $_GET['url']);
     } else {
         $purl = null;
     }
     if (!isset($purl['2'])) {
         $pn = 1;
     } else {
         $pn = $purl['2'];
     }
     global $database;
     $resultEmployee = $database->db_query("SELECT * FROM items");
     $pagin = new Pagination();
     //create the pagination object;
     $pagin->nr = $database->dbNumRows($resultEmployee);
     $pagin->itemsPerPage = 20;
     $myitems = Items::find_by_sql("SELECT * FROM items " . $pagin->pgLimit($pn));
     $index_array = array("items" => $myitems, "mypagin" => $pagin->render($pg));
     return $index_array;
     return $index_array;
 }
开发者ID:runningjack,项目名称:RobertJohnson,代码行数:30,代码来源:stockitems_model.php

示例2: getList

 /**
  * the getList method is used to 
  * pupolate the listing table 
  */
 public function getList($id = "", $pg)
 {
     $purl = array();
     if (isset($_GET['url'])) {
         $purl = $_GET['url'];
         $purl = rtrim($purl);
         $purl = explode('/', $_GET['url']);
     } else {
         $purl = null;
     }
     if (!isset($purl['2'])) {
         $pn = 1;
     } else {
         $pn = $purl['2'];
     }
     $itemnamefield = "";
     $descfield = "";
     $condifield = "";
     print_r($_POST['condi']);
     /**
      * of all the filter fields if only one field is set
      */
     $filterResult = "";
     if (isset($_POST['itemname']) && !empty($_POST['itemname'])) {
         $itemnamefield .= " AND item_name = '" . $_POST['itemname'] . "' ";
     }
     if (isset($_POST['descript']) && !empty($_POST['descript'])) {
         $descfield .= " AND item_description LIKE '%" . $_POST['descript'] . "%' ";
     }
     if (!empty($_POST['price']) && !empty($_POST['condi'])) {
         $condifield .= " AND item_cost " . $_POST['condi'] . " " . $_POST["price"];
     }
     if (!empty($_POST['fdate']) && !empty($_POST['tdate'])) {
         $datefield .= " AND datecreated BETWEEN  '" . $_POST['fdate'] . "' AND '" . $_POST['tdate'] . "' ";
     }
     if (empty($_POST['fdate']) && !empty($_POST['tdate'])) {
         $datefield .= " AND datecreated < '" . $_POST['tdate'] . "' ";
     }
     if (!empty($_POST['fdate']) && empty($_POST['tdate'])) {
         $datefield .= " AND datecreated >  '" . $_POST['fdate'] . "'  ";
     }
     $filterResult .= " WHERE id !='' " . $itemnamefield . $descfield . $condifield;
     global $database;
     $resultEmployee = $database->db_query("SELECT * FROM items " . $filterResult);
     $pagin = new Pagination();
     //create the pagination object;
     $pagin->nr = $database->dbNumRows($resultEmployee);
     $pagin->itemsPerPage = 20;
     $myitems = Items::find_by_sql("SELECT * FROM items " . $filterResult . " " . $pagin->pgLimit($pn));
     $index_array = array("items" => $myitems, "mypagin" => $pagin->render($pg));
     return $index_array;
 }
开发者ID:runningjack,项目名称:RobertJohnson,代码行数:56,代码来源:stockitems_model.php

示例3: itemID_AutoComplete

 /**
  * this section is used to get auto complete
  * feature for the item 
  * textbox
  */
 public function itemID_AutoComplete($id = "")
 {
     return Items::find_by_sql("SELECT * FROM items WHERE item_name LIKE '%" . $_POST['input'] . "%'");
 }
开发者ID:runningjack,项目名称:RobertJohnson,代码行数:9,代码来源:stockin_model.php


注:本文中的Items::find_by_sql方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。