Hi Guys....
I've got some doubt in the Redirecting code used in PHP. I've searched in Google and got the code as
<?php
header("Location: Anypage.html");
?>
So I've did a small module like this....But an error message is showing that "The Headers have already send". Please Help me out from this
<html>
<head>
<title>My Module</title>
</head>
<body>
<?php
if ($result == null)
header("Location: Thankyou.htm");
?>
</body>
</html>