Home > php教程 > php手册 > body text

PHP和MYSQL合理且有效的结合在一起

WBOY
Release: 2016-06-21 08:58:40
Original
1431 people have browsed it

mysql

  将PHP和MYSQL合理且有效的结合在一起可以制作出精致的数据库网站。MYSQL是一种小型的,紧密的数据服务器,支持标准SQL。它在UNIX和WINDOWS环境下都能够使用。
  PHP和MYSQL都是免费的开放源码。它们的结合可以在WINDOWS中发展,在UNIX中做服务。PHP也支持其他一些数据库包括PostgreSQL.

  下面有一个例子:
  首先你已经安装了PHP及MYSQL. 这个简单的脚本例子是从数据库中读取数据然后显示出来。

  
  


  
  $db = mysql_connect("localhost", "root");
  mysql_select_db("mydb", $db);
  $result = mysql_query("SELECT * FROM books",$db);
  echo "Title: ".mysql_result($result,0,"title")."
\n";
  echo "Author: ".mysql_result($result,0,"author")."
\n";
  echo "Price: ".mysql_result($result,0,"price")."
\n";

  ?>
  
  

  函数mysql_connect()是指在指定的主机上通过用户名(也可通过指定密码)连接一个MYSQL服务器。变量 $db 是用来提交这个连接。.

  mysql_select_db() 指定数据库用在后面的疑问。函数 mysql_query() 是发送 SQL 疑问到 MySQL 进行执行 , 结果返回并存储在变量 $result 中.

  最后 mysql_result() 函数是得出结果。



Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!