1 Star 0 Fork 1

maltYumi/cake

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
supplier_reg.php 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
maltYumi 提交于 2018-12-19 14:58 . Signed-off-by: malt 423498555@qq.com
<?php
/**
* ECSHOP 商家入驻
* ============================================================================
* 版权所有 2005-2010 上海商派网络科技有限公司,并保留所有权利。
* 网站地址: http://www.68ecshop.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/maltYumi/cake.git
git@gitee.com:maltYumi/cake.git
maltYumi
cake
cake
master

搜索帮助