目录
1. 数组的增删改查
2. 验证登录用户
2.1 前端简单代码
2.2 php代码文章来源:https://www.toymoban.com/news/detail-809676.html
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>';
?>
文章来源地址https://www.toymoban.com/news/detail-809676.html
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>
到了这里,关于php 使用数组校验登录用户的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!