How I can create a submit button that can pressed to placed me another web page | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

How I can create a submit button that can pressed to placed me another web page

24th Jun 2017, 4:06 PM
Souvik Sarkar
2 Respuestas
+ 1
<form action="action_page.php" method="get" id="form1">   First name: <input type="text" name="fname"><br>   Last name: <input type="text" name="lname"><br> </form> <button type="submit" form="form1" value="Submit">Submit</button> par example
24th Jun 2017, 4:29 PM
Elie Douaihy
Elie Douaihy - avatar
0
<form> <input type="submit" name="btnSubmit",value="submit" id="idSubmit" /> </form>
24th Jun 2017, 5:06 PM
Chathuranga Adikari
Chathuranga Adikari - avatar