I want to get the value of hidden
field in my html.
<form>
<fieldset>
<input id="name" type="hidden" value="vikiiii" name="name">
</fieldset>
My name is {What should i write here to print "vikiiii" ???} ...!!!
</div>
</form>
How i can print my name in that same html.
How i can achieve this? Thanks in advance.