这是登录表单的html代码:
<div id="container">
<form id= 'login' method="post" action="login.php" accept- charset='UTF-8'>
<label for="username">Username:</label>
<input type="text" id="username" name="username">
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<div id="lower">
<input type="checkbox"><label class="check" for="checkbox">Keep me logged in</label>
<input type="submit" value="Submit">
</div><!--/ lower-->
</form>
</div><!--/ container-->
这是用于保存表单数据的php脚本:
<?php
$username = $_POST['username'];
$password = $_POST['password'];
$fp = fopen("data.txt","a");
$savestring = $username.",".$password."n";
fwrite($fp,$savestring);
fclose($fp);
?>
然而,在填写表格中的信息后,我被重定向到一个简单显示php脚本的网页。什么都没有实际“执行”。
答案 0 :(得分:0)
然而,在填写表格中的信息后,我被重定向到一个只显示php脚本的网页。
您必须在解析PHP Enabled的情况下在 Web服务器上执行代码。例子包括:
软件包:
W:Windows / L:Linux / M:Mac