summaryrefslogtreecommitdiff
path: root/modules/digibug/views/digibug_form.html.php
blob: af5a88b4fb586e922c4450ac595397f599d393cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
  <body>
    <?= form::open("http://www.digibug.com/dapi/order.php") ?>
    <? foreach ($order_params as $key => $value): ?>
    <?= form::hidden($key, $value) ?>
    <? endforeach ?>
    </form>
    <script type="text/javascript">
     document.forms[0].submit();
    </script>
  </body>
</html>