My question is just very similar to this question Getting an attribute value in xml element
But the file is in Html not xml. The first answer given works for xml file but not html.
<form action="action_page.php">
First name:<br>
<input type="text" name="fistname" value="Mickey" />
<br>
Last name:<br>
<input type="text" name="lastname" value="Mouse" />
<br><br>
<input type="submit" value="Submit">
</form>
I have to read values inside name attribute. Thanks in advance. This question is different from the link or any other asked on StackOverflow. I have checked.