VM暫存
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

21 行
418B

  1. <?php
  2. /*
  3. file: Allpay_payment_model.php 付費系統 (歐付寶)
  4. */
  5. class Allpay_payment_model extends CI_Model
  6. {
  7. function __construct()
  8. {
  9. parent::__construct();
  10. $this->load->database();
  11. }
  12. // 記錄 (歐付寶付費)
  13. public function create_allpay_feedback_log($data)
  14. {
  15. $this->db->insert('allpay_feedback_log', $data);
  16. return true;
  17. }
  18. }