VM暫存
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Altpay_model.php 379B

1234567891011121314151617181920
  1. <?php
  2. if (!defined('BASEPATH')) exit('No direct script access allowed');
  3. class Altpay_model extends CI_Model {
  4. public function __construct() {
  5. parent::__construct();
  6. $this->db=$this->load->database('local',true);
  7. }
  8. public function sel_info() {
  9. $this->db->from('info');
  10. $rows = $this->db->get();
  11. return $rows->result_array();
  12. }
  13. }