Not sure how to explain as i'm not familiar with this, but i have a code that submits payment informations to a gateway, but now it uses _GET i think as the submit path incl. the details of the form.
Such as: gateway.com/?values
I wan't the form to submit this details with _POST and i'm not sure on what i need to change in the code as i think it's very simple, and therefore wanted to run it over by you guys to see if you can point me in the right direction.
A fraction of the code would be the following.
$query['amount'] = number_format((float) $_POST['total'], 2, '.', '');
$query['currency'] = $_POST['currency_code'];
$query_string = http_build_query($query);
Header('Location: http://domain.com/gateway.php?' . $query_string);