VM暫存
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

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. }