我设计了一个注册页面,现在我需要从登录页面获取输入并将其与外部文件匹配。(我知道 MySQL 更容易,但这是一个项目,我根本不能使用 MySQL。)
我在外部文件上有:
fname, sname, username, password, e-mail
我需要验证我的 txt 文件中的用户名和密码。我的登录页面如下所示:
<form action="logon.php" method="POST">
<p>Username: <input type="text" name="username"/></p>
<p>Password: <input type="password" name="password"/></p>
<input type="submit" value="Submit">
</form>
<a href="register.php">Register Here</a>
<?php
$username= $_POST['username'];
$password= $_POST['password'];
$contents = file_get_contents($file);
$arrangefile = preg_split( '/\n/' , $contents );
$found = false;
foreach ( $arrangefile as $items ) {
$data = explode ( ',' , $items );
}
} ?>