PHP 中使用 MySQL 数据库

在 PHP 中使用 MySQL 数据库,第一步是用 mysql_connect 函数连接数据库:

$con = mysql_connect($server,  $username,  $password);

其中 $server 是 mysql 服务器地址 'localhost:3306'。$username 和 $password 分别是用户名和密码。这个函数的返回值是一个 mysql 连接标识。

接下来是用 mysql_select_db 函数选择使用的数据库:

mysql_select_db($database, $con);

接着就可以用 mysql_query 函数查询数据了:

$sql = "SELECT `id`, `name` FROM `mytable`;

$result = mysql_query($sql, $con);

然后就可以用 mysql_fetch_array 函数读取数据行: 

while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {

  printf("ID: %s  Name: %s", $row["id"], $row["name"]);

} 

mysql_free_result($result);

最后可以用 mysql_close 函数关闭数据库连接:

mysql_close($con);

参考资料:
[1] PHP: Mysql - Manual
[2] PHP MySQL 函数 - W3school

你可能感兴趣的:(mysql)