PHP中,如何访问其他服务器上的MYSQL数据库?

PHP中,如何访问其他服务器上的MYSQL数据库?,第1张

可以使用这个方法连接数据库

$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()

.......

具体字段不是很了解

试试看吧


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6670932.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-26
下一篇 2023-03-26

发表评论

登录后才能评论

评论列表(0条)

保存