Hi,
I need to capture HTTP_RAW_POST_DATA status for download but its empty.
here is my code:
ini_set("always_populate_raw_post_data","On");
$stat = $HTTP_RAW_POST_DATA;
print $stat;
thanks,
HTTP_RAW_POST_DATA Empty
Moderator: General Moderators
Re: HTTP_RAW_POST_DATA Empty
$HTTP_RAW_POST_DATA is not available with enctype="multipart/form-data".
Code: Select all
print_r $HTTP_RAW_POST_DATA;There are 10 types of people in this world, those who understand binary and those who don't