paytest.php 458 B

12345678910111213141516171819
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>
  5. <?php echo $title ?>
  6. </title>
  7. </head>
  8. <body onload="document.pay.submit()">
  9. <form name="pay" action="/member/checkout" method="post">
  10. <?php foreach($data as $key=>
  11. $val):?>
  12. <input type="hidden" name="<?php echo $key?>" value="<?php echo $val?>">
  13. <?php endforeach;?>
  14. </form>
  15. </body>
  16. </html>