Is there a way to prepare form data in php on one server, and then open and fill that data in form that lies on another server?
So, I have mypreparation.php on SERVER/DOMAIN1, where I prepare data. On SERVER/DOMAIN2 is form.php that can read POST variables and prefill them in input and textarea tags, if POST vars are set.
How can I prepare and send POST data from mypreparation.php (SERVER1), and get page form.php (SERVER2) opened in my browser, with filled data from mypreparation.php?
From user perspective, flow looks like this. User is on DOMAIN1, where she has a link. When she clicks the link, php prepares data and opens form on DOMAIN2 with filled data, waiting for user to click Send. Data can't be sent with GET because it's larger.
This is to be done without javascript, just php1 to php2 which creates html. I control both mypreparation.php and form.php. Any ideas? Thank you.
DOMAIN1or does the user only interact withDOMAIN2? - jeroen