gpt4 book ai didi

php - HTML 公式重定向到 XAMPP 本地主机主页

转载 作者:太空狗 更新时间:2023-10-29 13:31:48 24 4
gpt4 key购买 nike

所以,我又遇到了另一个问题 -.-'

我编写了自己的 php/html 脚本,以将数据从表单传递到数据库。一开始它奏效了。不知何故,几天后它开始将我重定向到 XAMPP 本地主机主页 (http://localhost/xampp/)。我不知道为什么:/

这是我的网站的样子:

  • index.php
    • 所有其他脚本(通过 Switch-case)
    • 包括我的留言簿脚本(没有 switch-case!)它总是在那里!

这是我的“addguestbook.php”的样子:

   <?php

...database stuff...

if ($_SERVER['REQUEST_METHOD'] == 'POST'){

$name = $_POST['name'];
$email = $_POST['email'];
$website = $_POST['website'];
$comment = $_POST['comment'];
$datetime = date("l, jS M Y, g:i a"); //date time

// Connect to server and select database.
mysql_connect($host, $username, $password)or die("cannot connect server: ".mysql_error());
mysql_select_db($db_name)or die("cannot select DB: ".mysql_error());

$sql="INSERT INTO ".$tbl_name."(id, name, email, website, comment, datetime)VALUES('".$post_id."', '".$name."', '".$email."', '".$website."', '".$comment."', '".$datetime."')";
$result=mysql_query($sql);

mysql_close();

header('Location: http://'.$hostname.$path.'/index.php' . $get, true, 303);
}?>

<form action="index.php<? echo $get; ?>" method="post">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="guestbookFormCell" colspan='2'><input
class="guestbookInputFieldText" name="name" type="text"
value="Name *" size="40" maxlength="30" /></td>
</tr>
<tr>
<td class="guestbookFormCell" colspan='2'><input
class="guestbookInputFieldText" name="email" type="text"
value="E-Mail (won't become displayed)" size="40" maxlength="40" />
</td>
</tr>
<tr>
<td class="guestbookFormCell" colspan='2'><input
class="guestbookInputFieldText" name="website" type="text"
value="Website" size="40" maxlength="50" /></td>
</tr>
<tr>
<td class="guestbookFormCell" colspan='2'><textarea
class="guestbookInputFieldText" name="comment" cols="37" rows="5">Comment *</textarea>
</td>
</tr>
<!--
<tr>
<td>CAPTCHA</td>
</tr>
-->
<tr>
<td><button class="guestbookFormCell guestbookButton" type="submit"
name="submit">
<span class='guestbookButtonText'>Send</span>
</button></td>
<td><button class="guestbookFormCell guestbookButton" style="float:right;"type="reset"
name="reset">
<span class='guestbookButtonText'>Reset</span>
</button></td>
</tr>
</table>
</form>

在 index.php 中:

                $get = "?mod=home";

此脚本用于多种用途:页面的整体留言簿以及对单个帖子和图片/相册的评论。

PS:出于某种原因,我无法在线程的开头写问候:/如果那是粗鲁的,我很抱歉!

PSS:收到错误。

相当愚蠢:)

我只是忘记了论坛实际上是重定向到(在本例中)根目录中的 index.php。这意味着到 Xampp/htdocs/index.php。

我只需要修复链接就可以了 -.-'

最佳答案

只需编辑或删除原来的 index.html 并删除以下行

<meta http-equiv="refresh" content="0;url=/xampp/">

最好是您还清理缓存,因为您的浏览器会被强制加载所有新内容。

远藤

编辑:遇到这个问题的不止你一个:why-does-my-xampp-installation-auto-redirect-to-http-localhost-xampp

关于php - HTML 公式重定向到 XAMPP 本地主机主页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6371708/

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