⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 do_login.inc.php

📁 痕经典的delphi源码教程
💻 PHP
字号:
<?php
	session_start();
	include("dbconnect.inc.php");
	include("functions.inc.php");
	$form = check_form($_POST["edit"]);
	$username = $form["name"];
	$password = md5($form["pass"]);
	$sql = "select  *  from users where username='{$username}'  limit 1 ";
	$res = mysql_query($sql);
	$row = mysql_fetch_array($res);
	if(!$password == $row["password"]) {
		header("Location:msg.php?m=login_error");
		exit;
	}
	
	$_SESSION["userid"] = $row["id"];
	$_SESSION["username"] = $username;
	header("Location:account.php");
?>

⌨️ 快捷键说明

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