I want to direct to a link (test02.php)
automatically when the $result is finished
I have the following in my script
$insert = "insert into talk (name,say) values
('$name','$say')";
if($submit) {
$result = mysql_query($insert);
< Must go to test02.php >
} else {
I have tried this
if(some condition)
header("Location:http://www.somewebsite.com");
but it doesn't work
This has troubled me for quite some time know and I would really appreciate an answer