我正在创建一个网站,一切正常,直到我做了一些更改。我意识到,在对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)时,它不会重定向我!我玩过会话,他们不会迷路或删除,所以我不知道问题是什么,因为这些按钮可以在任何其他页面上正常工作。有帮助吗?
附:如果你想查看它的网站是avirix.com
答案 0 :(得分:0)
<?php
开场标记view_php
编码是否为UTF8 NO-BOM