You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

response.php 323B

1234567891011
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <body>
  4. <form action="<?= e($this->endpoint) ?>" method="post">
  5. <?php foreach ($params as $key => $value): ?>
  6. <input type="hidden" name="<?= e($key) ?>" value="<?= e($value) ?>">
  7. <?php endforeach; ?>
  8. </form>
  9. <script>document.getElementsByTagName('form')[0].submit();</script>
  10. </body>
  11. </html>