1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/modules/digibug/views/digibug_form.html.php

14 lines
367 B
PHP

<?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>