我有一个数据库,当查询与我们数据库中的任何内容都不匹配时,我试图将我的电子邮件地址显示为超链接。我正在使用以下...
PHP代码...
else{ // if there is no matching rows do following
echo "<br /><br /><br /><strong><h2>"."You have searched a term that is not in the database. Please contact <a href=\"mailto:email@domain.com" . htmlentities($_POST['email@domain.com']) . "\">".htmlentities($_POST['email@domain.com']) . "</a>, if you think this term should be added."."</h2></strong>";
但是,我得到的结果看起来像这样......
“您搜索了一个不在数据库中的词。如果您认为应该添加该词,请联系。”
除了超链接的电子邮件地址,一切都在那里。
想法?