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 にリンクされます。私の質問は、次のように、結果の Web ページに html タグが追加されているかどうかです。
<html>
<body>
example.php
</body>
</html>