I need the page to load with a specific label on the page after the user clicks the Mail button.
Note: I am using PHP
Example form code:
<form action="po.php?id=44" method="POST"> <input type="hidden" name="here" value="#here" /> <input name="btn_send" type="submit" value="Post" /> </form>
The page should land somewhere on the page with one heading between
as below
Code example:
<a name="here"></a> <p>Total Number of Posts 55</p>
As you can see, the place where I am the earth is just the text of the label, not a hyperlink. Therefore, I put the anchor as an indicator immediately before the heading.
Problem:
The page does not fit where I put it (name = "here"). The page is landing up. Is there an easy way to make it land (name = "here")?
user311509
source share