我创建了一个包含用户名,密码,用户类型,电子邮件等的用户表...用户类型将用户区分为Admin或其他用户。现在,登录后,getuser.php页面用于根据usertype。请帮帮我。谢谢。
这是我的getuser.php页面:
<?php include 'connect.php'; ?>
<?
$user = $_GET['user'];
session_start();
$_SESSION['user'] = $username;
if(isset($_SESSION['user'])){
$sql = "SELECT usertype FROM users WHERE userName='".$username."'";
$result = $db->query($sql);
//the function num_rows() checks if there are more than zero rows returned
if ($result->num_rows > 0) {
//echo "<table><tr><th>SELECT</th><th>ADID</th><th>ADName</th><th>ADCATEGORY</th><th>CONTACTNUMBER</th><th>EXPIRATIONDATE</th></tr>";
// output data of each row
while($row = $result->fetch_assoc()) {
$level= $row['usertype'];
}
}
if ($level=='1')
{
header("Location: adlist.php?user=$username");
}
else
{
header("Location: post_ad.php?user=$username");
}
}
else {
echo " Sorry, but you must login to view the members area"
}
?>
答案 0 :(得分:0)
scrowler的评论是完全正确的
当PHP执行文件时,?> <?php
之间的所有空格都被视为输出。
在你问题的例子中:
<?php include 'connect.php'; ?>
<!-- this gap produces output -->
<?php /* ... */ ?>
为什么这是一个大问题?
要发出必须将重定向标头发送到客户端,必须在HTTP响应正文之前发送这些标头。这意味着当你在程序中开始重定向后,当它已经开始被写入HTTP响应时,它已经很晚了。如果您正在使用输出缓冲,则客户端可能已经收到了一些响应。
响应标题如下所示:
HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
Vary: Accept-Encoding
X-Frame-Options: SAMEORIGIN
Date: Thu, 20 Nov 2014 00:55:09 GMT
Content-Length: 10614
您的回复会更加熟悉:
<!DOCTYPE html>
<html>
<head>
<title>Edit - Stack Overflow</title>
<!-- ... -->
</head>
<body>
<!-- ... -->
</body>
</html>
要解决此问题,请按如下方式更改文件的前几行
<?php
include 'connect.php';
$username = $_GET['user']; // not $user = $_GET['user'];
// ...