0

Possible Duplicate:
What's the difference between POST and raw POST in PHP at all?

I know about how capturing them on php and on ruby.

But i wonder, what is difference? why these two came with different params?

or i should ask like this when the raw post data come and is it about with my server-side scripting?

Community
  • 1
  • 1
Mehmet Davut
  • 667
  • 10
  • 30

1 Answers1

1

"raw" post data is un parsed. It is just a string that needs to be parsed into individual key value pairs, and urldecoded.

$_POST however has all of this already done for you. It's not often one would prefer the raw post data.

goat
  • 31,486
  • 7
  • 73
  • 96