gpt4 book ai didi

php - $_SERVER ['PATH_INFO' ] ..未定义索引 : PATH_INFO

转载 作者:行者123 更新时间:2023-12-03 23:06:42 24 4
gpt4 key购买 nike

我正在使用代码作为标题:

$fullurl=$_SERVER['PATH_INFO'];
echo '
<form action="'. $fullurl .'" method="POST">
<table width="1000" border="1" cellpadding="10" id="navigationBar">
<tr>
<td> <a href="/PoliticalForum/Registration.php">Register</a></td>
<td> <a href="/PoliticalForum/controlPanel.php">Control Panel</a></td>
<td> <a href="/PoliticalForum/checkEmail.php">Donate</a> </td>
<td align="right">name:<input name="name" type="text" /></td>
<td>password:<input name="pass" type="text" /> <input name="login" type="submit" value="Login" /> </td>
</tr>
</table>
</form>
';

我将跨页面文件的 header 包含在 require once 中。我想要的是 fullurl 变量获取它是“required_once”的页面的完整 url,当我单击提交时,我希望它重定向到标题所在的页面。我将 url 添加到操作中形式..

但我得到的是:

Undefined index: PATH_INFO

我试着改用那些:

explode('/', substr(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH),1));

$_ENV['PATH_INFO'];

但他们也没有工作:(

最佳答案

  <form action="" method="POST">

就这样

同样,回显原始 HTML 也没有意义
使用此代码代替您的代码

?>
<form action="" method="POST">
<table width="1000" border="1" cellpadding="10" id="navigationBar">
<tr>
<td> <a href="/PoliticalForum/Registration.php">Register</a></td>
<td> <a href="/PoliticalForum/controlPanel.php">Control Panel</a></td>
<td> <a href="/PoliticalForum/checkEmail.php">Donate</a> </td>
<td align="right">name:<input name="name" type="text" /></td>
<td>password:<input name="pass" type="text" /> <input name="login" type="submit" value="Login" /> </td>
</tr>
</table>
</form>

关于php - $_SERVER ['PATH_INFO' ] ..未定义索引 : PATH_INFO,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7818038/

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