我正在创建一个网站,一切正常,直到我进行了一些更改。我意识到,在对 view_profile 页面进行更改后,它没有正确重定向回主页或任何其他页面。它只是卡在这里,我撤消了这些更改,但现在它仍然没有重定向。这是我的代码的一部分:
session_start();
error_reporting(E_ALL);
include_once "php/connect.php" ;
include_once "php/timeFunctions.php" ;
if (isset($_GET['midfa']))
{
$midfa = preg_replace('#[^0-9]#i', '', $_GET['midfa']);
}
if (isset($_SESSION['id']))
{
$id = $_SESSION['id'];
}
else
{
header("Location: index.php");
exit();
}
$sql = mysql_query("SELECT * FROM tableName WHERE `memberID`='$midfa' LIMIT 1")
or die (mysql_error());
$existCount = mysql_num_rows($sql);
if ($existCount == 0)
{
header("Location: index.php");
exit();
}
while($row = mysql_fetch_array($sql))
{
//gather all member data here
}
在同一页面中,我还有指向会员资料、他们的照片等的按钮链接。所有页面都有相同的按钮菜单。问题是当我单击此特定页面(view_profile.php)中的任何链接时,它不会重定向我!我玩了这些会话,它们没有丢失或删除,所以我不知道问题可能是什么,因为这些按钮在任何其他页面上都可以正常工作。有什么帮助吗?
PS如果你想看看网站是avirix.com