I have only been able to do this with GET, How do I submit multiple forms without the previous data being lost when resubmitting a different form via POST ?
Use hidden input fields?
<input type="hidden" />
Store in a session?
session_start();
$_SESSION['blarr'] = $_POST['old-data'];
Persist the previous form data into a database or session.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With