赛亿提成统计系统

Model.php 228B

    <?php namespace daswork; class Model { protected $db; public function __construct(){ $this->db = new \mysqli('localhost', 'root', 'root001', 'test'); } public function query($sql) { return $this->db->query($sql); } }