您知道如何在 HTML 中使用输入表单指定操作:
<form action="example.php" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit">
</form>
提交表单时,它将链接到 example.php。我的问题是,生成的网页是否添加了 html 标签,如下所示:
<html>
<body>
example.php
</body>
</html>