.inc文件中标头位置的错误

时间:2016-05-28 19:30:40

标签: php html smarty

我创建了.inc文件 您可以检查我的.inc文件的编码。

if(!empty($_GET["name"])) {
$servername = "localhost";
$username = "allstatus";
$password = "sU*lTNVO,W%?";
$dbname = "allstatus";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);

 $name = $_GET["name"];
 $sql = "SELECT * FROM hl_listings Where name ='$name'";
 $result = $conn->query($sql);

 if ($result->num_rows > 0) {
 // output data of each row
 while($row = $result->fetch_assoc()) {
    $id = $row["id"];
    echo $id;
    header ('Location : admin.php?a=edit_listing&lid='.$id.'&gid=0&p=');
    exit ();
}
} else {
echo "0 results";
}
$conn->close();

id显示我从我的数据库中获取的内容 但没有做头标题的工作

请告诉我任何人有什么问题? 等待好的回应。

0 个答案:

没有答案