我在我的网页上显示用户的电子邮件,但是当我在移动设备上显示该页面时,有时会显示不是

时间:2017-01-20 10:59:11

标签: php html

我有一个显示用户电子邮件的页面。当我在PC上登录页面时,它始终有效,但在我的手机上,有时会显示电子邮件,有时则不会。

请参阅下面的代码。

我已经安装了一个插件,我可以在html环​​境中编写php。

<h5>Please confirm your email address, and the results will display shortly</h5>
<input name="email" required="" type="radio" value="<?php global $current_user;
get_currentuserinfo();
echo $current_user->user_email;
?>" /><?php global $current_user; 
get_currentuserinfo(); 
echo "  " . $current_user->user_email . "\n";
?>
<input type="submit" />

1 个答案:

答案 0 :(得分:1)

我不知道您是否打算稍后在表单上添加更多输入。但我建议采用自适应设计,以确保它在所有设备上看起来都很好。

您可以使用样式表或创建自己的样式表。 此链接包含一些示例:http://www.w3schools.com/html/html_responsive.asp