login.php

来自「这是整套横扫千军3D版游戏的源码」· PHP 代码 · 共 18 行

PHP
18
字号
<?php
  // As an argument you should specify the "goback" string, which must be a filename of the
  // page to which it should redirect (withouth any "/" characters, just the filename, like "index.php")

  require("inc/functions.php");

  startSessionProperly();

  if (!loggedIn())
  {
    login($_POST['username'], $_POST['password']);
  }

  $goback = $_GET['goback'];
  if ($goback == "") $goback = "index.php";
  redirect($goback);

?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?