mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
17 lines
416 B
PHP
17 lines
416 B
PHP
<?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>
|