电子邮件地址从表格输入到表格

时间:2017-03-30 08:48:45

标签: php

我正在尝试让表单输入用户名并自动将@ 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>';

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

如果您想要显示它:

echo '<td><a href="mailto:'.$row['email'].'@informatica.com">' . $row['email'].'@informatica.com</a></td>';