예제 #1
0
function safePage()
{
    if (!isset($_SESSION['userID']) or !isset($_SESSION['userName'])) {
        userOut();
    } else {
        if (!validUser($_SESSION['userName'], $_SESSION['userPassw'])) {
            userOut();
        }
    }
}
예제 #2
0
파일: doAction.php 프로젝트: win87/lago
<?php

require_once 'include.php';
$act = $_REQUEST['act'];
//@$id=$_REQUEST['id'];
@($recipients_id = $_REQUEST['recipients_id']);
@($user_id = $_REQUEST['user_id']);
if ($act == "register") {
    $mes = register();
} elseif ($act == "login") {
    $mes = login();
} elseif ($act == "userOut") {
    $mes = userOut();
} elseif ($act == "changePwd") {
    $mes = changePwd();
} elseif ($act == "addPackage") {
    $mes = addPackage();
} elseif ($act == "addRecipients") {
    $mes = addRecipients();
} elseif ($act == "delRecipients") {
    $mes = delRecipients($recipients_id, $user_id);
} elseif ($act == "addOrder") {
    $mes = addOrder();
}
?>

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome</title>
예제 #3
0
<?php

require_once 'include.php';
$act = $_REQUEST['act'];
if ($act === "reg") {
    $mes = reg();
} elseif ($act === "login") {
    $mes = login();
} elseif ($act === "userOut") {
    userOut();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<?php 
if ($mes) {
    echo $mes;
}
?>
</body>
</html>