Home > Backend Development > PHP Tutorial > php通过隐藏表单控件获取到前两个页面的url_PHP

php通过隐藏表单控件获取到前两个页面的url_PHP

WBOY
Release: 2016-05-31 19:30:09
Original
1358 people have browsed it

自己在学习过程中也遇到了类似的问题:
比如,后台是想做成这样子的:

但是实际则是这样的:

解决方法:
通过隐藏表单控件

<input type="hidden" name="prevurl" value="<&#63;php echo $_SERVER['HTTP_REFERER']&#63;>">
Copy after login

这样$_SERVER['HTTP_REFERER']的值看上去就暂时存到了$_POST[prevurl]里。

其实这个方法的原理还是把上一个url通过post的方法post到了别的地方去,只不过这个的post是当前页面而已

在之后的开发中,新建文章的部分会有一个select标签,如果把select标签的disabled启用的话,将不能post所选的value值,所以我又一次使用了hidden的欺骗方法,暗地里提交一次,屡试不爽。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template