I've got a PHP script file that does some processing, and when done, I set the header location like so:
header("Location: ../" . $address);
Where address would be something like "mypage.phtml#end"
In the phtml file, I have <a name="end"></a>
This works in Mozilla Firebird, but doesn't work in IE (The #end seems to be getting stripped off the url)
Anyone come across this before or know of a workaround?
Cheers