示例#1
0
文件: index.php 项目: wyjie/bool
<?php

define('ACC', true);
require './include/init.php';
// 取出5条新品
$goods = new GoodsModel();
$newlist = $goods->getNew(5);
/*
取出指定栏目的商品
*/
// 女士大栏目下的商品
$female_id = 4;
$felist = $goods->catGoods($female_id);
// 男士大栏目下的商品,同学们自己来完成
include ROOT . 'view/front/index.html';
示例#2
0
文件: index.php 项目: KevinZY/mall
<?php

define('ACC', true);
/***
 * 所有由用户直接访问到的这些页面
 * 都得现加载init.php
 */
require './include/init.php';
$goods = new GoodsModel();
$newList = $goods->getNew();
$appleList = $goods->getGoodsByCat(1);
$samsungList = $goods->getGoodsByCat(2);
include ROOT . 'view/front/index.html';