这是我的“表单”http://www.confidentialpatient.com/js/index.html
我需要为此添加一些内容:
我知道这可能很多,但我非常感谢任何见解!
答案 0 :(得分:0)
如果没有服务器端脚本语言,则无法执行此操作。您拥有的少数选择是PHP,ASP.NET,PERL或Python。
供您参考,我提到了一个测试脚本和PHP代码,只提交一个字段,然后在下一页上接收该信息,然后以h2标签显示给用户。
第1页的代码:
<form method="post" action="page2.html">
<h1>This is a test form</h1>
<label>Enter your full name</label>
<input type="text" name="fullname" />
<input type="submit" name="submit" value="Submit Form" />
</form>
第2页的代码(接收页面):
<?php
$name = $_POST['fullname'];
?>
<h2>You submitted name is: <?php echo $name; ?> </h2>