I have a PHP file that is receiving some data, manipulating it, and then moving to a new page with "header("location: XXX.php")". I can append the data I want to send forward to the end with "?xxx=yyy" and use $GET, but I'd rather it nor be visible to the user. So, is there a way to add the data so I can get it with $POST instead and still have it automatically forward without pressing a submit button?