在加载时发布 HTML 表单的最佳方式是什么?这是我目前正在尝试的:
<?php
if ($Autopost == "1");
{
<body onLoad="mail.submit()">
<form method="POST" name="mail" class="adjacent" action="./Script/addmaillist.php">
<input type="hidden" name="email" value="<?php echo $email; ?>">
<input type="hidden" name="genre" value="<?php echo $genre; ?>">
</form>
}
?>
我只想知道这是否是一个好方法,是否有更好的方法?