Пример #1
0
<?php

include './../inc/comm.php';
$w = new wonyun();
include WONINC . '/order.class.php';
$o = new order();
if ($w->check() == '0') {
    $w->msg('还没有登录呢!错误代码:107', '/admin.php');
}
$config['name'] = $_SESSION['name'];
$config['user'] = $_SESSION['user'];
if ($g) {
    if ($g['ac'] == 'logout') {
        //登出
        $w->logout();
    } elseif ($g['ac'] == 'edit') {
        //编辑
        $config['aid'] = $g['aid'];
        $odate = $o->show($g['aid']);
        $o->edit($odate);
    } elseif ($g['ac'] == 'add') {
        //添加数据
        $w->show('add');
        exit;
    } elseif ($g['ac'] == 'del') {
        $o->del($g['aid']);
    }
}
if ($p) {
    if ($p['ac'] == 'update') {
        $o->update($p);
Пример #2
0
<?php

include 'comm.php';
$w = new wonyun();
if ($w->check() == '0') {
    $w->msg('还没有登录呢!错误代码:107', '/admin.php');
}
Пример #3
0
<?php

include 'inc/comm.php';
$w = new wonyun();
if ($p['ac'] == 'so') {
    $w->so($p['kw']);
}
if ($g['passwd'] == "8110") {
    if ($p['ac'] == 'pas') {
        $w->msg($w->passwd($p['password']), '/?passwd=8110');
    }
    $w->show('passwd');
    exit;
}
$w->show('index');
Пример #4
0
<?php

include 'inc/comm.php';
$w = new wonyun();
if ($w->check()) {
    header("Location: /_gl/");
}
if ($_POST and $_POST['ac'] == '1') {
    $w->login($_POST['uname'], $_POST['password']);
}
$w->show('login');