代码拉取完成,页面将自动刷新
<?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');
}
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。