本文整理匯總了PHP中dbconnection::getActiveProductsRecords方法的典型用法代碼示例。如果您正苦於以下問題:PHP dbconnection::getActiveProductsRecords方法的具體用法?PHP dbconnection::getActiveProductsRecords怎麽用?PHP dbconnection::getActiveProductsRecords使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類dbconnection
的用法示例。
在下文中一共展示了dbconnection::getActiveProductsRecords方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dbconnection
// deconnection already included in Validation
$dbobj = new dbconnection();
$vobj = new Validation();
session_start();
if (!isset($_SESSION['uid'])) {
echo "You are not authoriezed to enter this page. You have to login first";
exit;
}
$uid = $_SESSION['uid'];
if (!$vobj->ifSuperUserId($uid)) {
echo "You are not authoriezed to enter this page. Only for admins.";
exit;
}
$_products_img = "../images/product/";
$_users_img = "../images/user/";
$productsArr = $dbobj->getActiveProductsRecords();
$_controller = "../controller/";
$_layout = "../layout/";
$_add_product = "../layout/add_product.php";
$uname = $dbobj->SelectColumn('uname', 'user', 'uid', $uid);
$uname = $uname[0];
$img = $_users_img . $uname . ".jpeg";
include "common/header.php";
?>
<html>
<head>
<title></title>
</head>
<body>
<div class="container">