本文整理汇总了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;
}
示例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;
}
示例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'] . "%'");
}