第一种形式:
<form method="post" action="some-url.php">
<input type="email" placeholder="Email address" value="" name="email">
<input type="submit" value="Submit" name="email-submit">
</form>
然后在某个url中。php:
if( isset($_POST[\'email\'] )
$email = $_POST[\'email\']
这里首选post方法,因为它不会创建包含用户电子邮件地址的服务器日志条目。
您还应该通过SSL进行此操作,因为您正在收集“姓名、年龄等”