Link instead of submit button, possible?
Posted: Thu Oct 27, 2005 7:30 am
I wonder if I can use a link (href) instead of a submit button when I build a html form?
<body>
<form name="form1" method="post" action="my_file.php">
<input type="submit" name="Submit" value="Submit">
</form>
</body>
</html>
<body>
<form name="form1" method="post" action="my_file.php">
<input type="submit" name="Submit" value="Submit">
</form>
</body>
</html>