01.
<html>
02.
<head>
03.
<title>ThaiCreate.Com Tutorial</title>
04.
</head>
05.
<body>
06.
<form action=
"PagePost3.php"
method=
"post"
name=
"form1"
>
07.
<?php
08.
echo
$_POST
[
"txtName"
].
"<br>"
;
09.
echo
$_POST
[
"txtSiteName"
].
"<br>"
;
10.
echo
"<hr>"
;
11.
?>
12.
<input name=
"txtName"
type=
"hidden"
value=
"<?=$_POST["
txtName
"];?>"
>
13.
<input name=
"txtSiteName"
type=
"hidden"
value=
"<?=$_POST["
txtSiteName
"];?>"
>
14.
<input type=
"submit"
name=
"Submit"
value=
"Submit"
>
15.
</form>
16.
</body>
17.
</html>