i have a little php script and at the top i have a processing section which works on $_POST form variables. at the end of the processing i use
i just do this to stop any problems with people using the back button in the browser.
recently i've introduced html anchors into my page and this is the problem - even though i'm using header location as above, the anchor tag is persisting when using firefox - works fine in ie7. even though i'm hardcoding the redirect, firefox is keeping the anchor in it's address bar. wtf is going on?

Code:
$here = 'http://domain/folder/';
header("Location: $here");
i just do this to stop any problems with people using the back button in the browser.
recently i've introduced html anchors into my page and this is the problem - even though i'm using header location as above, the anchor tag is persisting when using firefox - works fine in ie7. even though i'm hardcoding the redirect, firefox is keeping the anchor in it's address bar. wtf is going on?

