我试图在更新数据库后重定向页面,但出现错误。请帮忙。
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\lucent\updatedb.php:1) in C:\xampp\htdocs\lucent\updatedb.php on line 18
代码
<?php
$con = mysql_connect("localhost","root","") ;
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("pdk company", $con);
mysql_query("UPDATE servicetbl SET date_expiry='2012-06-13'
WHERE id =1");
mysql_close($con);
$URL="login_success.php";
header ("Location: $URL");
?>