gpt4 book ai didi

PHP 脚本未执行 - 登录表单捕获

转载 作者:行者123 更新时间:2023-11-28 06:47:03 26 4
gpt4 key购买 nike

这是登录表单的 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 脚本的网页。实际上没有任何东西被“执行”。

最佳答案

However, upon filling out the information in the form I am redirected to a webpage simply showing the php script.

您必须在启用解析 PHP 的Web 服务器 上执行您的代码。示例包括:

  • [W] 带有 PHP ISAPI 插件的 Microsoft IIS 服务器。
  • [W/L/M] 带有 PHP 的 Apache HTTP 服务器。
  • [W/L/M] 带有 PHP 的 NginX 服务器。
  • [W/L/M] 带 PHP 的 LigHTTPD 服务器。

bundle :

  • [W/M] [ApacheFriends XAMPP] 1
  • [W] [WAMP 服务器] 2
  • [W/M] [MAMP/MAMP Pro] 3
  • [W/L/M] [AMPPS] 4

W:Windows/L:Linux/M:Mac

关于PHP 脚本未执行 - 登录表单捕获,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33985665/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com