I did some research on this topic, and there are some experts who have said that it is not possible, so I would like to ask for an alternative solution. My situation: Page A: [checkout.php] Customer fills in their billing details. Page B: [process.php] Generate an invoice number and store customer details in database. Page C: [thirdparty.com] Third Payment Gateway
Tag: post
PHP some $_POST values missing but are present in php://input
I have a very big html form (containing table with rows, which contain multiple inputs), which i need to submit to PHP script via POST request. The problem is some values don’t come through and are …
Write Post data to file with PHP
I need to post data using the code below, to php file that will save it in a text file. I just don’t know how to create the php file to receive the data below and save it in a text file. as simple as possible. Answer Simple as:
Sending POST data without form
Can i send for example a string or another piece of information to another .php file without it being exposed [thus not by GET but by POST conform to what i know] without using a form? Answer If you don’t want your data to be seen by the user, use a PHP session. Data in a post request is still
How do I debug a webhook POST?
A webhook is sending me a POST, and I want to do some debugging on it. Currently I’m looping over the array and then sending a mail() to myself instead of printing (because how could I see what’s …
PHP – Redirect and send data via POST
I have an online gateway which requires an HTML form to be submitted with hidden fields. I need to do this via a PHP script without any HTML forms (I have the data for the hidden fields in a DB) To …