example.html
<html>
<form action="example.php" method="post">
<table border="0">
<tr>
<td align=center><input type="text" name="memo" size=20 maxlength=20><input type="submit" value="확인"></td>
</tr>
</table>
</form>
</html>
위와 같이 작성을 해서 실행을 해보면 아래와 같은 결과가 나온다. 확인을 누르면 example.php을 실행하게 되어 있기 때문에 여기서는 작동하지 않는다. 확인을 클릭 후 주소창을 확인해보면, http://blog.winterine.com/example.php 라고 뜨는 것을 볼 수 있다.
<input type="submit" value="확인"> 은 그 옆에 있는 확인 버튼에 관한 것이다.