外链论坛

 找回密码
 立即注册
搜索
查看: 85|回复: 4

面试官:你对MySQL比较熟?那说说PHP连接MySQL数据库的几种办法吧!

[复制链接]

2926

主题

148

回帖

9911万

积分

论坛元老

Rank: 8Rank: 8

积分
99119434
发表于 2024-7-11 23:09:05 | 显示全部楼层 |阅读模式

1.最简单的方式-mysql(面向过程)

<?php $con = mysql_connect("localhost","root","password"); $select_db = mysql_select_db(test); if (!$select_db) { die("could not connect to the db:\n" . mysql_error()); } //查找代码 $sql = "select * from db_table"; $res = mysql_query($sql); if (!$res) { die("could get the res:\n" . mysql_error()); } while ($row = mysql_fetch_assoc($res)) { print_r($row); } //查找代码 //关闭数据库连接 mysql_close($con); ?>

点击进入我的企鹅裙

2.新的方式-mysqli(面向过程)

$mysql_server_name = localhost; //改成自己的mysql数据库服务器 $mysql_username = root; //改成自己的mysql数据库用户名 $mysql_password = password; //改成自己的mysql数据库暗码 $mysql_database = test; //改成自己的mysql数据库名 $conn=mysqli_connect($mysql_server_name,$mysql_username,$mysql_password,$mysql_database); //连接数据库 //连接数据库错误提示 if (mysqli_connect_errno($conn)) { die("连接 MySQL 失败: " . mysqli_connect_error()); } mysqli_query($conn,"set names utf8"); //数据库编码格式 // mysqli_set_charset($conn,"utf8");//设置默认客户端字符集。 // mysqli_select_db($conn,$mysql_database); //更改连接的默认数据库 //查找代码 $sql = “select * from db_table”; $query = mysqli_query($conn,$sql); while($row = mysqli_fetch_array($query)){ echo $row[title]; } //查找代码 // 释放结果集+关闭MySQL数据库连接 mysqli_free_result($result); mysqli_close($conn);

3、常用方式-mysqli(面向对象)

//连接数据库方式1 $conn = new mysqli(localhost, root, password, test); //连接数据库方式2 // $conn = new mysqli(); // $conn -> connect(localhost, root, password, test); //check connection (检测PHP是不是连接上MYSQL) if ($conn -> connect_errno) { printf("Connect failed: %s\n", $conn->connect_error); exit(); } //查找代码 $sql = “select * from db_table”; $query = $conn->query($sql); while($row = $query
回复

使用道具 举报

0

主题

1万

回帖

1

积分

新手上路

Rank: 1

积分
1
发表于 2024-9-24 11:09:42 | 显示全部楼层
你的留言真是温暖如春,让我感受到了无尽的支持与鼓励。
回复

使用道具 举报

2963

主题

1万

回帖

9910万

积分

论坛元老

Rank: 8Rank: 8

积分
99109214
发表于 2024-9-28 02:28:55 | 显示全部楼层
哈哈、笑死我了、太搞笑了吧等。
回复

使用道具 举报

3003

主题

1万

回帖

9996万

积分

论坛元老

Rank: 8Rank: 8

积分
99969116
发表于 2024-10-1 04:41:12 | 显示全部楼层
可以发布外链的网站 http://www.fok120.com/
回复

使用道具 举报

3003

主题

1万

回帖

9996万

积分

论坛元老

Rank: 8Rank: 8

积分
99969116
发表于 前天 21:33 | 显示全部楼层
可以发布外链的网站 http://www.fok120.com/
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

站点统计|Archiver|手机版|小黑屋|外链论坛 ( 非经营性网站 )|网站地图

GMT+8, 2024-10-18 21:16 , Processed in 0.093474 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.