Voting

: max(three, zero)?
(Example: nine)

The Note You're Voting On

ben dot johansen at gmail dot com
16 years ago
Example of how to use the php://input to get raw post data

//read the raw data in
$roughHTTPPOST = file_get_contents("php://input");
//parse it into vars
parse_str($roughHTTPPOST);

if you do readfile("php://input") you will get the length of the post data

<< Back to user notes page

To Top