Hello,
I searched everywhere, but I can't find it anywhere. I've got one form where the user can put his info. And an otherside which is there for previewing before posting it to the mail ( .pl) but how can I make the preview page?
<!-- form.htm -->
<html>
<head>
<body>
<form action="preview.htm" method="post" name="myForm">
<input type="text" name="Name" value="George">
<input type="submit">
</body>
</head>
</html>
<!-- preview.htm -->
<html>
<head>
<body>
Your info to submit:
name:
<script language="JavaScript">
document.write(form.myForm.Name.value)
</script>
</body>
</head>
</html>
What am I doing wrong at preview.htm? It seems that I call the form var's not well?
Thanks,
Charl
I searched everywhere, but I can't find it anywhere. I've got one form where the user can put his info. And an otherside which is there for previewing before posting it to the mail ( .pl) but how can I make the preview page?
<!-- form.htm -->
<html>
<head>
<body>
<form action="preview.htm" method="post" name="myForm">
<input type="text" name="Name" value="George">
<input type="submit">
</body>
</head>
</html>
<!-- preview.htm -->
<html>
<head>
<body>
Your info to submit:
name:
<script language="JavaScript">
document.write(form.myForm.Name.value)
</script>
</body>
</head>
</html>
What am I doing wrong at preview.htm? It seems that I call the form var's not well?
Thanks,
Charl