html5 - Passing values from one html to another html without extra script -
i have registration form such below:
<form action="res.html" method="get"> firstname :<input type="text" name="first" /><br /> lastname :<input type="text" name="last" /><br /> gender :<input type="radio" name="gender" />male <input type="radio" name="gender" />female<br /><br /> <input type="submit" value="register" name="submit" /> </form>
i want display firstname & lastname in res.html file. know can use javascript, php or jsp, without of script's can pass values res.html.
thanks in advance.
you can't pass data file have extension .html should change file name res.html res.php
Comments
Post a Comment