I've just noticed some strange behavior with PHP and html anchor tags.
Just say I am here:
http://www.foobar.com/test.php?id=41
And I hit an anchor link to "#jump". The browser attempts to load this page:
http://www.foobar.com/#jump
Which can cause probs.
Has anyone else seen this before? Is it a client issue? Server issue? PHP issue?
I've no idea where to start.
in order not to "forget" the id parm, formulate the link like this:
<a href=<?=$PHP_SELF ?>?<?=$QUERY_STRING ?>#jump>...</a>
resp.:
<a href=test.php?id=<?=$id ?>#jump>...</a>