如何在HTML和PHP中的单个文本字段中添加多个电子邮件ID?

时间:2015-09-05 12:35:33

标签: php html

我只想使用PHP和HTML在单个文本字段中添加多个电子邮件。我希望用户能够在HTML文本字段中输入多个电子邮件ID。它应该像Hotmail一样发生。

1 个答案:

答案 0 :(得分:0)

HTML multiple Attribute可帮助您进行多个参数

使用php的爆炸功能分隔电子邮件

<?php

echo<<<_END

<html>
<body>
<form action="php.php" method='POST'>
Enter emails seperated by comma: <input type="text" name="mail" multiple>
<input type="submit">
</form>
</body>
</html>
_END;

if(isset($_POST['mail']))
{
$t = $_POST['mail'];
$arra=explode(",",$t);  
for($i=0;$i<count($arra);++$i)
   {echo $arra[$i];
    echo"<br>";
   }
}
?>

上面的代码给出了以下输出 enter image description here

为了获取空白分隔的电子邮件,只需将爆炸功能更改为

即可
$arra=explode(" ",$t); // comma replaced with whitespace

这应该可以正常工作。