我正在尝试将用户可以输入数据的HTML文件链接到将收集输入数据的PHP文件
这是名为“AddATeacher.html”的HTML文件
<!DOCTYPE html>
<html>
<body>
<h3>Input the information below... </h3>
<form action="/action_page.php">
First name:<input type="text" name="firstname"> (up to 40 Characters)
<br>
Last name:<input type="text" name="lastname"> (up to 40 Characters)
<br>
ID code:<input type="text" name="ID code"> (3 Characters)
<br>
Full Time?
<input type="radio" name="Time" value="Full Time" checked><br>
Part Time?
<input type="radio" name="Time" value="Part Time"><br>
Hours:<input type="text" name="Hours" > (input weekly hours, if full time then 23.5)
<br>
Room Preferenc:<input type="text" name="Room Preferenc" >
<br>
<a href="getAddATeacher"><input type="submit" value="Submit" ></a>
</form>
</body>
</html>
这是我试图将其链接到名为'getAddATeacher.php'的PHP文件
<!DOCTYPE html>
<html>
<body>
Welcome <?php echo $_GET["firstname"]; ?><br>
</body>
</html>
这两个文件存储在同一个地方,如果这有什么区别吗?
答案 0 :(得分:0)
您有“action_page.php”作为表单的操作。因此,如果您通过提交按钮提交表单,它将被发送到“action_page.php”文件。如果您想在“getAddATeacher.php”中处理数据,则应在表单操作中进行更改。
顺便说一下。提交表格的按钮不能链接!