Skip to content

Instantly share code, notes, and snippets.

@Lh4cKg
Last active August 29, 2015 14:01
Show Gist options
  • Save Lh4cKg/fb13cc03afac145b816f to your computer and use it in GitHub Desktop.
Save Lh4cKg/fb13cc03afac145b816f to your computer and use it in GitHub Desktop.
<?//**************************************************
//**************************************************?>
<form action="<?php echo $action; ?>" method="post" id="payment">
<input type="hidden" name="merchant" value="კოდი"/>
<input type="hidden" name="ordercode" value="<?php echo $order; ?>"/>
<input type="hidden" name="amount" value="<?php echo $amount; ?>"/>
<input type="hidden" name="currency" value="GEL"/>
<input type="hidden" name="description" value="<?php echo $description; ?>"/>
<input type="hidden" name="clientname" value="<?php echo $clientname; ?>"/>
<input type="hidden" name="customdata" value="<?php echo $customer_id; ?>" />
<input type="hidden" name="ispreauth" value="<?php echo $ispreauth; ?>" />
<input type="hidden" name="lng" value="<?php echo $lng; ?>" />
<input type="hidden" name="successurl" value="<?php echo $return_url; ?>"/>
<input type="hidden" name="errorurl" value="<?php echo $error_url; ?>"/>
<input type="hidden" name="cancelurl" value="<?php echo $cancel_url; ?>"/>
<input type="hidden" name="callbackurl" value="<?php echo $status_url; ?>"/>
<input type="hidden" name="testmode" value="1" />
<input type="hidden" name="check" value="<?php echo $check; ?>"/>
<div class="buttons">
<div class="right"><a style="color:#fff;" onclick="$('#payment').submit();" class="button">
<span><?php echo $button_confirm; ?></span></a></div>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment