How is <submit> linked to another page | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How is <submit> linked to another page

it is not easy

15th Oct 2018, 4:02 PM
Sankalp GHOST Coding
3 Answers
+ 2
Submit can be linked to another page by using action tag <Input type="submit" action="www.examplewebsite.com" /> <p>that was easy</p>
2nd Nov 2018, 4:39 PM
Jyotiraditya GHOST CODING
Jyotiraditya GHOST CODING - avatar
+ 2
Thankx for the answer it earned me badges
7th Sep 2019, 2:35 AM
Sankalp GHOST Coding
0
I'm not sure if I understand your question, but you can go to another page automatically by typing in the url in the action-attribute like this: <form method="post" action="linkToYourNewPage.php"> <! -- Your form here... -- > </form> On submit-click your browser will go to that page and do the code you have there.
23rd Oct 2018, 8:36 AM
Function
Function - avatar