我有电子邮件的输入字段, 我需要用户输入的数据才能显示在另一页上
<input style="width:456px; height:30px;" class="adv_onus_fields" name="adv_onus_email" autocomplete="off" type="email" placeholder="'.__("Email", "Advinim").'"/>
#1
你只需要将输入包装成表格并指定这样的目标即可。
<form action="/destination.php" method="get">
<input style="width:456px; height:30px;" class="adv_onus_fields" name="adv_onus_email" autocomplete="off" type="email" placeholder="'.__("Email", "Advinim").'"/>>
<input type="submit" value="Submit">
</form>
在你要使用变量的页面上, 写$ _GET [‘adv_onus_email’]来访问它。
另一种方法是使用session_start()启动会话并将变量保存在$ _SESSION数组中。
评论前必须登录!
注册