This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
redir/application/views/redirection/post.php
2013-04-15 17:38:25 +10:00

17 lines
685 B
PHP

<form class="form-inline" method="POST" action="<?php echo $posturl; ?>">
<fieldset>
<legend>New Short Cut</legend>
<p class="text-success"><?php printf('%s/%s',$domain,$path); ?> redirected to <?php echo $url; ?></p>
<select id="amount_1" class="span2" name="amount_1" class="input-medium">
<?php foreach ($price as $k => $v): ?>
<option value="<?php echo $v; ?>"><?php printf('%s %s',$k,$v); ?></option>
<?php endforeach ?>
</select>
<?php foreach ($posthidden as $k => $v): ?>
<input type="hidden" name="<?php echo $k; ?>" value="<?php echo $v; ?>">
<?php endforeach ?>
<button type="submit" class="btn btn-primary">Paypal</button>
</fieldset>
</form>