Skip to content
Advertisement

Tag: post

PHP Redirect with POST data

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

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 …

Advertisement