summaryrefslogtreecommitdiff
path: root/modules/digibug/views/digibug_form.html.php
blob: e18cbc18bed6dadb15ec1e3a4a1d54d0175723be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
  <head>
    <?= html::script("lib/jquery.js") ?>
    <script type="text/javascript">
      $("body form").ready(function() {
        $("body form").submit();
      });
    </script>
  </head>
  <body>
    <?= form::open("http://www.digibug.com/dapi/order.php") ?>
    <?= form::hidden($order_parms) ?>
    <?= form::close() ?>
  </body>
</html>