您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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>