header

A

Anonymous

Guest
It's main mistake of beginners:
you do:
Code:
<HTML>
......
<?PHP header("Location: http://www...")
Need do:
Code:
<?PHP header("Location: http://www...")
......
<HTML>
 
Back
Top