Is it mandatory that action="abc.php" in the FORM tag must have a PHP, JSP, ASP file? Can plain HTML code display the data represented in FORM ?
In other words,
FILE: abc.html
<form method="post" action="xyz.html"> <input type="text" name="name" id="name" value="Enter your name here" /> </form>
OR
<form method="get" action="xyz.html"> <input type="text" name="name" id="name" value="Enter your name here" /> </form>
Now in the xyz.html file, is xyz.html possible to display the name entered in abc.html using only HTML code?
source share