爲什麼地球上不會這項工作他們是沒有空格沒有產出,但尚未我把重定向只是configuartion .PHP前剛剛對我的數據庫連接是什麼賦予了頭位置PHP爲什麼當沒有空白
<?php
require('configuration.php');
$voucher = $_SESSION['voucher'] ;
$result = mysql_query("SELECT used FROM codes where code='".$voucher."'");
$row =mysql_fetch_row($result);
if ($row['used'] == "1") {
header('Location: invalid.php');
exit;
}
if ($row['used'] == "0") {
header('Location: valid.php');
exit;
}
?>
**警告**您的代碼可能對sql注入攻擊是可以接受的。 – 2012-02-21 21:20:24
'configuration.php'的內容是什麼? – 2012-02-21 21:24:29
還要注意(據我所知)在最後的php標籤'?>'COUNTS作爲輸出之後的空格。所以當檢查'configuration.php'時也檢查。 – horatio 2012-02-21 22:51:19