PHP无法获得post数据

WBOY
Release: 2016-06-23 14:01:28
Original
1025 people have browsed it

有没有谁在PHP中遇到过前台post传递值,后台用$_POST无法获取值


回复讨论(解决方案)

没有的事。给出代码瞧瞧。。

传过去了吗? 得看具体代码,一般不会出现这样的情况

……

代码贴出来看看

不会吧!只要你写的没出错,值都能传递的。你把代码贴出来。。。

show me the code~

show me the code~

为什么不会呢?

<form method=post enctype="text/plain">  <p>First name: <input type="text" name="fname" /></p>  <p>Last name: <input type="text" name="lname" /></p>  <input type="submit" value="Submit" /></form>
Copy after login
这个就用$_POST无法获取值

把enctype="text/plain"去掉就可以了吧。

$_POST['NAME']接收啊!

firebug 瞧瞧了没的

你可以用$_QUERST接收一下值,至于$_POST不能接受值,可能是你php.ini中的某个参数改变导致的!修改一下register_global 这个参数的就应该可以了,但可能会导致安全性降低!

你可以用$_QUERST接收一下值,至于$_POST不能接受值,可能是你php.ini中的某个参数改变导致的!修改一下register_global 这个参数的就应该可以了,但可能会导致安全性降低!
可以试试,应该是配置的问题

貌似有些php版本中键值不加引号也会出现这样的情况

 
 


from要加引号 

感谢大家的回帖,貌似是php.ini设置问题

都没有action

Related labels:
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