Ejemplo n.º 1
0
function output_html5_header($title, $css = array(), $js = array())
{
    do_page_prerequisites();
    header('Content-Type: text/html');
    $title = htmlspecialchars($title);
    $link = '';
    foreach ($css as $cssFile) {
        $link .= '<link rel="stylesheet" type="text/css" href="' . $cssFile . '" />';
    }
    $script = '';
    foreach ($js as $jsFile) {
        $script .= '<script type="application/javascript" src="' . $jsFile . '"></script>';
    }
    echo <<<ZZEOF
<!DOCTYPE html>
<html>
<head>
  <title>{$title}</title>
  {$link}
  {$script}
</head>
<body>
ZZEOF;
}
Ejemplo n.º 2
0
<?php

require_once 'lib/lib.php';
do_page_prerequisites();
if (!(count($_POST) == 2 && array_key_exists('userid', $_POST) && array_key_exists('pass', $_POST))) {
    do_http_redirect('login.php');
    exit(0);
}
$userid = trim($_POST['userid']);
$pass = trim($_POST['pass']);
if (is_valid_user_and_pass($userid, $pass)) {
    log_user_in($userid);
    send_user_to_user_homepage();
} else {
    logout_user();
    send_user_to_login_page("Invalid user name and/or password.");
}