1 Star 0 Fork 3

caiwh/基于小京东开发门店收银台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
supplier_reg.php 1.72 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
/**
* 鸿宇多用户商城 商家入驻
* ============================================================================
* 版权所有 2005-2010 鸿宇多用户商城科技有限公司,并保留所有权利。
* 网站地址: http://bbs.hongyuvip.com;
* ----------------------------------------------------------------------------
* 仅供学习交流使用,如需商用请购买正版版权。鸿宇不承担任何法律责任。
* 踏踏实实做事,堂堂正正做人。
* ============================================================================
* $Author: zhangyh $
* $Id: flow.php 17218 2011-01-24 04:10:41Z $
*/
define('IN_ECS', true);
require(dirname(__FILE__) . '/includes/init.php');
assign_template();
$action = isset($_REQUEST['act']) ? trim($_REQUEST['act']) : 'default';
$smarty->assign('action', $action);
if ($action == 'default')
{
$smarty->display('supplier_reg.dwt');
}
if ($action == 'reg')
{
/* 检查用户是否已经登录 */
if ( $_SESSION['user_id'] == 0)
{
ecs_header("Location: user.php?back_act=supplier_reg.php?act=reg\n");
exit;
}
$sql = "select supplier_id, status from ". $ecs->table('supplier') ." where user_id='". $_SESSION['user_id'] ."' ";
$supplier_row = $db->getRow($sql);
if ($supplier_row['supplier_id'])
{
if ($supplier_row['status'] =='0')
{
$status = "审核中";
}
elseif ($supplier_row['status'] =='-1')
{
$status = "审核未通过";
}
elseif ($supplier_row['status'] =='1')
{
$status = '审核已通过!';
}
$smarty->assign('supplier', $supplier_row);
$smarty->assign('status', $status);
}
else
{
ecs_header("Location: user.php?act=supplier_reg\n");
exit;
}
$smarty->display('supplier_reg.dwt');
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/caiwh/0727_shouyintai.git
[email protected]:caiwh/0727_shouyintai.git
caiwh
0727_shouyintai
基于小京东开发门店收银台
master

搜索帮助