Open clawfire opened 12 years ago
hi, When i make a command line curl -d "data=plop" url , my server running php script get the $_POST filed with data=plop but when i use your library, i must make a file_get_content(php://input) to get the data.
curl -d "data=plop" url
$_POST
data=plop
file_get_content(php://input)
Why ? :(
hi, When i make a command line
curl -d "data=plop" url
, my server running php script get the$_POST
filed withdata=plop
but when i use your library, i must make afile_get_content(php://input)
to get the data.Why ? :(