|
|
|
ดึงค่าจากฐานข้อมูล เข้า array แต่ค่าarrayที่ดึงมาจาก omise ยังอยู่ สามารถทำได้ไหม |
|
|
|
|
|
|
|
ผมต้องการดึงค่า จากฐานข้อมูล ไปแทนยังค่า 'amount' => 3000, กับ data-amount="3000" แต่ค่าอื่นที่ดึงมาจาก omise ยังอยู่ สามารถทำได้ไหมครับ
Code (PHP)
<?php
require_once dirname(__FILE__).'/omise-php/lib/Omise.php';
define('OMISE_API_VERSION', '2015-11-17');
// define('OMISE_PUBLIC_KEY', 'PUBLIC_KEY');
// define('OMISE_SECRET_KEY', 'SECRET_KEY');
define('OMISE_PUBLIC_KEY', 'pkey_test_00000');
define('OMISE_SECRET_KEY', 'skey_test_00000');
$charge = OmiseCharge::create(array(
'amount' => 3000,
'currency' => 'thb',
'card' => $_POST["omiseToken"]
));
if ($charge['status'] == 'successful') {
echo 'Success';
} else {
echo 'Fail';
}
print('<pre>');
print_r($charge);
print('</pre>');
?>
Code
<html>
<head>
</head>
<body>
<form name="checkoutForm" method="POST" action="checkout.php">
<script type="text/javascript" src="https://cdn.omise.co/omise.js"
data-key="pkey_test_55my9laliu25tto1j35"
data-image="http://bit.ly/customer_image"
data-frame-label="Merchant site name"
data-button-label="Pay now"
data-submit-label="Submit"
data-location="no"
data-amount="3000"
data-currency="thb"
>
</script>
<!--the script will render <input type="hidden" name="omiseToken"> for you automatically-->
</form>
<!-- data-key="YOUR_PUBLIC_KEY" -->
</body>
</html>
Tag : PHP, MySQL, JavaScript, jQuery
|
ประวัติการแก้ไข 2017-10-11 14:34:44 2017-10-11 14:35:07
|
|
|
|
|
Date :
2017-10-11 14:33:02 |
By :
bakerylove |
View :
1305 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|