我已经制作了这张表格,您可以在其中写下您的姓名、姓氏、电话和电子邮件。使用 HTML 和 PHP。
name: "textfield here"
lastname: "textfield here"
phone: "textfield here"
email: "textfield here"
我的PHP代码:
echo "<H1>Hello " .$_POST['name']. " " .$_POST['surname'];
echo "I'm calling you at " .$_POST['telephone']. " or email you at ".$_POST['email'];
如何使结果email
作为超链接出来?