if (strlen($_POST['reply']) < 6) {
header("Refresh: 2; url=thread.php?id=$tid#reply");
die("The text you have entered is too short. Please write a longer text and try again.");
}
Why won't header refresh work when I add #reply? Gives a blank page. It works with header location though. Any idea?