【发布时间】:2012-11-09 11:04:34
【问题描述】:
我已经制作了这张表格,您可以在其中填写您的姓名、姓氏、电话和电子邮件。 使用 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 的结果以超链接的形式出现?
【问题讨论】:
-
您只想将电子邮件地址设为链接?
-
-1 在询问之前自己做一些研究。
-
我做到了!但是我找不到东西! ://
标签: php html hyperlink textfield