jesse1981
5/7/2013 - 11:44 PM

Example of reading PHP input data to array.

Example of reading PHP input data to array.

<?php
$_PUT = array();
parse_str(file_get_contents('php://input'), $_PUT);
?>