我正在尝试让表单输入用户名并自动将@ domain.com添加到表中。 我的表格代码是:
<th>Owner Emaill: * <td><input type="text" name="email" value="<?php echo $email; ?>" />@informatica.com </td></tr>
,表格是:
echo '<td><a href="mailto:'.$row['email'].'">' . $row['email'].'</a></td>';
非常感谢任何帮助。
答案 0 :(得分:0)
如果您想要显示它:
echo '<td><a href="mailto:'.$row['email'].'@informatica.com">' . $row['email'].'@informatica.com</a></td>';