html 5输入类型的电子邮件$
我有这样的代码,
<input id="email" name="email" type="email" placeholder="email" class="form-control input-md" required="" />
和我的行动形式php $ email = $ _ POST [“email”]; 当我输入echo $ email时,它不显示我输入的内容。 但如果我改变
<input id="email" name="email" type="text" placeholder="email" class="form-control input-md" required="" /> (type=text)
它显示我输入的内容,类型文本,但不是type = email,为什么? 谢谢
链接地址: http://www.djcxy.com/p/58911.html上一篇: html 5 input type email $
下一篇: php script echoing part of the php instead of what intended