search
Homephp教程php手册PHP 自学教程之MySQL数据库

PHP 自学教程之MySQL数据库

Jun 06, 2016 pm 07:53 PM
mysqlphpTutorialdatabaseSelf-studyaccess

PHP访问MySQL数据库的一般步骤: 1、连接MySQL数据库:使用mysql_connect()函数建立与MySQL服务器的连接。 2、选择MySQL数据库:使用mysql_select_db()函数选择MySQL数据库服务器上对于的数据库。 3、执行SQL语句:在选择的数据库中使用mysql_query()函数

PHP访问MySQL数据库的一般步骤:

1、连接MySQL数据库:使用mysql_connect()函数建立与MySQL服务器的连接。

2、选择MySQL数据库:使用mysql_select_db()函数选择MySQL数据库服务器上对于的数据库。

3、执行SQL语句:在选择的数据库中使用mysql_query()函数执行SQL语句。

4、关闭结果集:数据库操作完毕后,通过mysql_free_result()函数,释放MySQL系统资源。

5、关闭MySQL服务器:在完成数据库操作,应该使用mysql_close()函数关闭与数据库服务器连接。


PHP连接MySQL数据库实例代码:

<?php //定义连接数据库相关变量
          $dbhost ="localhost" ;
          $dbuser = "swxm"; // 我的用户名
          $dbpass = "swxm"; // 我的密码
          $dbname = "shopping"; // 我的mysql库名
          //连接到数据库函数---mysql_connect
          $connection=mysql_connect($dbhost,$dbuser,$dbpass);
          if(!$connection){
          	die("无法连接到MySQL数据库:</br>".mysql_error());//诊断连接错误          
          }
          //选择数据库函数--------mysql_select_db
          $db_selecct=mysql_select_db($dbname, $connection);
          if(!$db_selecct)
          {
          	die("无法连接到指定的数据库".mysql_error());
          }
          $query="select * from  user ";//构建查询语句
          //执行SQL查询函数-----------mysql_query
          $result=mysql_query($query);
          if(!$result)
          {
          	die("无法进行相关查询操作".mysql_error());
          
          }
          //查询结果
          while($result_row=mysql_fetch_row($result))//取出结果并显示
          {
          	$num=$result_row[0];
          	$age=$result_row[1];
          	$name=$result_row[2];
          	echo "<tr>";
          	echo "<td>$num</td>
<br>";
          	echo "<td>$age</td>
<br>";
          	echo "<td>$name</td>";
          	echo "</tr>";
          }
          
          
?>

结果展示:

PHP 自学教程之MySQL数据库

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version