hi everybody,
i need to link this html pages if i click submit button.It should fetch the textbox value to another html page
<html>
<head>
</head>
<body>
<form method=post action="g1.html">
<input type=text id="q" >
<input type="submit" name="submit">
</form>
</body>
</html>
<html>
<head>
</head>
<body>
<form method=post>
<input type=text id="q" value="">
<input type=submit name=submit value=Submit>
</form>
</html>