PHP - getting content of the POST request
Posted
by user364622
on Stack Overflow
See other posts from Stack Overflow
or by user364622
Published on 2010-06-13T15:05:03Z
Indexed on
2010/06/13
15:12 UTC
Read the original article
Hit count: 165
I have problem with getting the content. I don't know the names of the post variables so I can't do this using
= $_Post['name']
because I don't know the "name". I want to catch all of the variables send by POST method. How can I get keys of the $_Post[] array and the values related with them?
© Stack Overflow or respective owner