This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?//************************************************** | |
//**************************************************?> | |
<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; ?>"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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'); | |
NewerOlder