php 使用数组校验登录用户

发布时间:2024年01月14日

?

目录

?

1. 数组的增删改查

2. 验证登录用户

2.1 前端简单代码

2.2 php代码


1. 数组的增删改查

<?php
header("Content-Type: text/html; charset=utf-8");
	$a = array('i', 'you', 'her', 2, 4, 3);
	print_r($a);// 原数组
	echo '<br>';
	
	//增,只能往后增
	$a[6] = 'and';
	print_r($a);
	echo '<br>';
	
	//改
	$a[1] = 'you';
	print_r($a);
	echo '<br>';
	
	//查
	echo $a[3].'<br>';
	
	//删
	unset($a[0]);
	print_r($a);
	echo '<br>';

?>

2. 验证登录用户

2.1 前端简单代码

<!DOCTYPE html>
<html>
	<head>
	
	</head>
		<meta charset="UTF-8">
		<title>校验站</title>
	<body>
		<div>
			<div>欢迎来到登录页面</div>
			<from action='file.php' method='get'>
				用户名:<input type='text' name='username'>
				密码:<input type='password' name='password'>
				<input type='submit'>
			</from>
		</div>
	</body>
</html>

2.2 php代码

<!DOCTYPE html>
<html>
	<head>
	
	</head>
		<meta charset="UTF-8">
		<title>校验站</title>
	<body>
		<div>
			<div>欢迎来到登录页面</div>
			<from action='file.php' method='get'>
				用户名:<input type='text' name='username'>
				密码:<input type='password' name='password'>
				<input type='submit'>
			</from>
		</div>
	</body>
</html>

文章来源:https://blog.csdn.net/m0_60494863/article/details/135577852
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。