It is easy to go a specific portion after clicking a link, like this
to go here, <a name=“go” id=“go”></a>, we can make a link <a href=“index.html#go”>
Can you tell me how can I go to a specific portion of a page after submitting button? Normally, it displays upper portion of the page. I would appreciate your help
You can have PHP redirect to the same page, but with the fragment identifier attached.
This causes a second load to happen to the page, which you may not desire.
A second way is to have javascript perform the redirect, but keep in mind that not everyone will have javascript enabled.