Home > Backend Development > PHP Tutorial > 怎么取同一php文件里的post值

怎么取同一php文件里的post值

WBOY
Release: 2016-06-23 13:33:31
Original
914 people have browsed it

代码假设为 

<?phpif($_POST) {$a = $_POST['a']; echo "$a ";   //可以正常输出的。}else{$a = $_POST['a']; echo "$a ";   //不能输出值!!!!!}?>
Copy after login



请问下,怎么才能在 else 里面获得 $_POST['a'] 的值?求办法。


回复讨论(解决方案)

顺便问下 php 里面 echo输出的;值是文字的话,html页面里怎么放置到合适的位置。

你这是把驴打死了 然后 还说驴怎么是死的,不是活的。请问你理解if else 语句吗,不理解请翻看PHP手册

说说你具体的需求,才能更好的回答你得问题。你这说的完全不清楚,无法回答。

仔细看下你的if条件判断语句逻辑,假如$_POST为真,那么不会往下执行的。

你这是把驴打死了 然后 还说驴怎么是死的,不是活的。请问你理解if else 语句吗,不理解请翻看PHP手册



说的对,我就是想在else区获取POST的属性。。如果没有难度 , 我就不会这么问了

说说你具体的需求,才能更好的回答你得问题。你这说的完全不清楚,无法回答。



就是在POST页面填写了一个内容,然后提交后,在非POST页面要获取这个内容

else里面根本没执行的


说说你具体的需求,才能更好的回答你得问题。你这说的完全不清楚,无法回答。



就是在POST页面填写了一个内容,然后提交后,在非POST页面要获取这个内容

存到session里,数据库里,文件里,等等,再取
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