PHP连接MySQL服务器
连接MySQL的方法:mysql_connect();
- 语法:resource $link = mysql_connect($hostname, $username, $password);
- $hostname参数:是MySQL服务器的域名或地址,可以在后面加上端口号。如:localhost:3306
- $username参数:是MySQL服务器的用户名,如:root
- $password参数:是MySQL服务器用户民的密码。
- 返回值:如果执行成功,返回一个资源标识符,如果执行失败,返回false。
<?php $link = @mysql_connect("localhost:3308","root",""); if (!$link) { echo "链接数据库失败。".mysql_error()."<br />"; exit("数据库打开失败,以关闭程序。"); } ?>
选择数据库方法:mysql_select_db();
语法:bool mysql_select_db(string $database_name[,resource $link]);
- $database参数:数据库名字。
- $link参数:可选,如果不填就会默认用上一次链接数据库返回的resource类型的变量$link
if (!mysql_select_db($db_name, $link)) { echo "打开数据库出错。".mysql_error(); }
发送sql语句:mysql_query();
语法:bool mysql_query(string $query[,resource $link]);
- $qurey参数:要发送的sql语句,可以是增删该查。
- $link参数:可选参数,默认是上一次打开的link。
- 返回值:SELECT, SHOW, DESCRIBE命令时返回一个结果集(也是一个资源标识符,是MySQL数据的引用地址),如果执行其他语句则返回bool值。
设置MySQL返回和发送的数据字符集:
mysql_query("set names utf8");
添加数据
$sql_insert = "INSERT INTO 007_news(cat,title,author,content)VALUES(2,'测试数据标题','some author','测试信息的内容');"; $result = mysql_query($sql_insert,$link); if ($result) { echo "添加成功"; }
查找数据
- 语法:$resource = mysql_query("SELECT * FROM table_name WHERE id<100 ORDER BY id DESC");
- $resource变量:当mysql_query执行的是查询语句 会返回一个结果集而不是bool。我们要的数据都在$resource中。
- 取出一条数据:$arr = mysql_fetch_array($resource[, int $result_type]);
- $resource参数:结果集。
- $result_type:返回的结果类型,此参数需要传系统常量:MYSQL_BOTH, MYSQL_ASSOC, MYSQL_NUM。
- MYSQL_BOTH: 默认值,返回混合数组。
- MYSQL_ASSOC: 返回一个关联数组:与mysql_fetch_assoc();同效。
- MYSQL_NUM: 返回一个枚举数组:与mysql_fetch_row();同效。
- 返回值:返回一个数组(只包含一条数据),数组类型取决于第二个参数。
- 我们可以使用while循环来取出所有数据,当取出第一条数据后再次调用这个函数 它会自动取出下一条数据,无需程序员做别的操作。
首先,我们写一个公共的链接数据库的文件。
<?php // 声明PHP输出数据的字符集 header("content-type:text/html;charset=utf-8"); // 配置信息 $db_host = "localhost:3306"; $db_username = "root"; $db_password = ""; $db_name = "Alex"; // 链接数据库 $link = @mysql_connect($db_host, $db_username, $db_password); if (!$link){ exit("连接数据库失败"); } // 选择数据库 if (!mysql_select_db($db_name, $link)){ exit("选择数据库失败"); } // 设置数据库返回的字符集 mysql_query("set names utf8", $link); ?>
引用公共文件,开始进行取数据的学习:
<?php include "MySQL_Connect.php"; $sql = "SELECT id,title,author FROM 007_news WHERE id < 100 ORDER BY id DESC"; $result = mysql_query($sql); if (!$result){ exit("没有取出数据"); } ?> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <title>数据展示</title> </head> <body> <table width="100%" border="1px" cellpadding="5px"> <tr> <th>序号</th> <th>标题</th> <th>作者</th> </tr> <?php while ($arr = mysql_fetch_assoc($result)){ ?> <tr> <th><?php echo $arr["id"] ?></th> <th><?php echo $arr["title"] ?></th> <th><?php echo $arr["author"] ?></th> </tr> <?php } ?> </table> </body> </html>
删除数据
- 语法:mysql_query("DELETE FROM table_name WHERE id = 99");
给展示数据表页面添加操作:
<?php include "MySQL_Connect.php"; $sql = "SELECT id,title,author FROM 007_news WHERE id < 100 ORDER BY id DESC"; $result = mysql_query($sql); if (!$result){ exit("没有取出数据"); } ?> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <title>数据展示</title> <script type="text/javascript"> function delData (id) { if (window.confirm("确定要删除这条数据吗?")){ // 把id传过去。 location.href = "delete_data.php?id="+id; } } </script> </head> <body> <table width="100%" border="1px" cellpadding="5px"> <tr> <th>序号</th> <th>标题</th> <th>作者</th> <th>操作</th> </tr> <?php // 声明变量 $i = 0; $str = ""; while ($arr = mysql_fetch_assoc($result)) { $i % 2 == 0 ? $str.= "<tr aligh = 'center' bgcolor='#f6f6f6'>\n" : $str .= "<tr aligh = 'center'>\n"; $str .= "<td>".$arr['id']."</td>\n"; $str .= "<td>".$arr['title']."</td>\n"; $str .= "<td>".$arr['author']."</td>\n"; $str .= "<td><a href='javascript:void(0)'onClick='delData(".$arr['id'].")'>删除</a></td>\n"; $str .= "</tr>\n"; $i++; } echo $str; ?> </table> </body> </html>
当点击删除后,确定删除会跳转到delete_data.php
<?php include "MySQL_Connect.php"; // 导入地址栏中的id参数 $id = (int)$_GET["id"]; // 删除语句 $sql = "DELETE FROM 007_news WHERE id = {$id}"; mysql_query($sql); // 调回到列表页 header("location:learn_sql.php"); ?>