I am attempting to post data using fsockopen, and then returning the result. Here is my current code:
Try this in reposter.php
$raw_data = $GLOBALS['HTTP_RAW_POST_DATA']; parse_str( $raw_data, $_POST ); print_r( $_POST );
Because, the data wasn't in the $_POST[] variables but it was in the $GLOBALS['HTTP_RAW_POST_DATA'] variable.
$_POST[]
$GLOBALS['HTTP_RAW_POST_DATA']