我有一个表单,我网站的访问者可以使用它来注册课程。形式本质上是:
<form method="post" action="registration.php">
<h1>Class Name</h1>
<input type="text" name="name">
<input type="email" name="email">
<button type="submit">
</form>
registration.php 包含:
$name = check_input($_POST['name'];
$name = check_input($_POST['email'];
以及一些通过电子邮件发送该信息的代码。我怎样才能让这也阅读班级名称,以便我可以将其用作注册电子邮件的主题?
谢谢。