Warning: Cannot modify header information - headers already sent by
Posted
by mohanraj
on Stack Overflow
See other posts from Stack Overflow
or by mohanraj
Published on 2010-06-05T05:12:00Z
Indexed on
2010/06/05
6:32 UTC
Read the original article
Hit count: 219
php
$sql="insert into digifresh_review values('0','$created','$modified','$cus_name','$cus_email','$cus_description','$type')";
if (mysql_query($sql,$con))
{
header("location: ../digifresh/thankyou.php");
}
else
{
die('Error: ' . mysql_error());
}
mysql_close($con);
© Stack Overflow or respective owner