下载此文档

通过PHP访问MySQL.doc


文档分类:IT计算机 | 页数:约11页 举报非法文档有奖
1/11
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/11 下载此文档
文档列表 文档介绍
原文: 
Getting PHP to Talk to MySQl
Now that you’fortable using the MySQL client tools to manipulate data in the database, you can begin using PHP to display and modify data from the database. PHP has standard functions for working with the , we’re going to discuss PHP’s built-in database functions. We’ll also show you how to use the The PHP Extension and Application Repository (PEAR) database
functions that provide the ability to use the same functions to access any supported database. This type of es from a process called abstraction. In programming interfaces, abstraction simplifies plex interaction. It works by
removing any nonessential parts of the interaction, allowing you to concentrate on the important parts. PEAR’s DB classes are one such database interface abstraction. The information you need to log into a database is reduced to the bare minimum. This standard format allows you to interact with MySQL, as well as other databases using the same functions. Similarly, other MySQL-specific functions are replaced with generic ones that know how to talk to many databases. For example, the MySQL-specific connect function is:
mysql_connect($db_host, $db_username, $db_password);
versus PEAR’s DB connect function:
$connection = DB::connect("mysql://$db_username:$db_password@$db_host/$db_database");
The same basic information is present in mands, but the PEAR function also specifies the type of databases to which to connect. You can connect to MySQL or other supported databases. We’ll discuss both connection methods in detail.
In this chapter, you’ll learn how to connect to a MySQL server fromPHP, how to use PHP to access and retrieve stored data, and how to correctly display information to the user.
1 The Process
The basic steps of performing a query, whether using the mand-line tool or PHP, are the same:
• Connect to the database.
• Select the database to use.
• Build a SELECT statement.
• Perform the query.
• Display the results.

通过PHP访问MySQL 来自淘豆网m.daumloan.com转载请标明出处.

相关文档 更多>>
非法内容举报中心
文档信息
  • 页数11
  • 收藏数0 收藏
  • 顶次数0
  • 上传人qsrkmc24
  • 文件大小49 KB
  • 时间2018-01-20