Skip to content

Instantly share code, notes, and snippets.

View Lh4cKg's full-sized avatar
🐍
Working

Lasha Gogua Lh4cKg

🐍
Working
View GitHub Profile
<?//**************************************************
//**************************************************?>
<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; ?>"/>
<?php
class ControllerPaymentpayge extends Controller {
protected function index() {
$this->load->model('checkout/order');
$this->language->load('payment/payge');
$this->data['button_confirm'] = $this->language->get('button_confirm');