$con=mysql_connect('127.0.0.1','user','123456') or die("服务器连接失败!")
mysql_select_db('test',$con)
mysql_query("set names 'gb2312'")
三行代码就实现了连接MySQL数据库。
$this->db->select('product.*, pro_type.type, artist.name')$this->db->from('product')
$this->db->join('pro_type', 'product.cid=pro_type.typeId')
$this->db->join('artist', 'product.pid=artist.nameId')
$this->db->where('......')
$query = $this->db->get()
$result = $query->result_array()
.......
试试看吧
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)