Is it necessarily required that the action="abc.php" in FORM tag must have a PHP, JSP, ASP file? Can't simple HTML code display the data submitted in the 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 file xyz.html, can I display the name entered in abc.html using only HTML code? 
 
     
     
     
     
     
     
     
    