Hi. I've written a .php script so when the user clicks on the link for a page it uses a variable to sort the appropriate information (e.g. Bob is a user and clicks a link and the resulting URL would be http://www.website.com/users?id=bob).
My problem is that I am trying to add some links on the left hand side of the page so that the user can navigate through the information displayed on the page. So I tried using an image with <a href="#1">. Then I put <a name="1"> in the script where Bob's information would be displayed. The problem is that when I click the link, the URL changes to http://www.website.com/users?id=bob#1 - but it doesn't jump to the place in the page. Does anyone have any alternate ideas, or maybe I'm doing something wrong? Thanks!