search
HomeBackend DevelopmentPHP TutorialMultiple methods and example codes for connecting php to mysql

  1. mysql_connect("localhost", "root","1981427") //Connect to the server located on localhost, the user name is root
  2. ?>
Copy the code

Connect again Select database

  1. @mysql_select_db("test") //Select database mydb
  2. ?>
Copy the code

This way you can connect to the database

Running the code appears: call to undefined function 'mysql_connect()'… failed This prompt function undefined means that there is no mysql_connect() function,

Solution: Copy the php_mysql.dll and libmysql.dll files to c:winntsystem32 (I missed libmysql.dll) Find ;extension=php_mysql in php.ini and remove the ";" in front of it Restart the server Example 1, conn.php file code:

  1. $conn = @mysql_connect("localhost", "root", "root") or die("Database link error");
  2. mysql_select_db("data", $conn); //data is the database name
  3. mysql_query("set names 'gbk'"); //Use gbk Chinese encoding;
  4. ?>
Copy code

index.php file code:

  1. include("conn.php");//Introduce the conn.php file
  2. $sql="select * from `table` order by id desc";
  3. $query=mysql_query( $sql);
  4. while($row=mysql_fetch_array($query)){
  5. ?>
Copy code

Display data content:

  1. =$row[user]?>
  2. }
  3. ?>
Copy code

php to connect mysql database

Method 1: Ordinary method (process-oriented)

First, database user information:

  1. //Generate a connection

  2. $db_connect=mysql_connect($dbhost,$username,$userpass) or die("unable to connect to the mysql!");
  3. //Select A database that needs to be operated
  4. mysql_select_db($dbdatabase,$db_connect);
  5. //Execute mysql statement
  6. $result=mysql_query("select id,name from user");
  7. // Extract data

  8. $row=mysql_fetch_row($result);
Copy code

Added: ①Use @ (error control operator) before mysql_connect(), mysql_select_db() and other functions to ignore the error message generated by the system, and then we use die() to customize the error message;

②When extracting data, in addition to the mysql_fetch_row above, the common ones are mysql_fetch_assoc and mysql_fetch_array. Please refer to the php manual for specific differences;

③For the return value of the mysql_query() function, if the executed statement has a return value (such as select, show, describe, etc.), the corresponding data (on success) or false (on failure) will be returned; if the executed statement has no return value (such as delete, drop, insert, update, etc.), it returns true (when successful) or false (when failed).

Method 2: PHP object-oriented method to connect to mysql database

In fact, this method is very similar to the ordinary method. It just replaces the corresponding function with an object-oriented method and looks at the code directly.

  1. $db=new mysqli($dbhost,$username,$userpass,$dbdatabase);
  2. if(mysqli_connect_error()){
  3. echo 'could not connect to database.';
  4. exit;
  5. }
  6. $result=$db->query("select id,name from user");
  7. $row=$result->fetch_row();
Copy code

Mysqli is used here, which means an extension of mysql. It can interact with the database in either a process-oriented way or an object-oriented way. The only difference is that the way to call functions (object methods) is different.

Method 3: php pdo method to connect to mysql database

pdo is actually the abbreviation of php database objects, which is php database object in Chinese. It provides a unified method for PHP to interact with the database.

This is currently a popular method of connecting to a database. Its advantage is that as long as the data source is provided correctly, the rest of the basic operations on the database are the same. In other words, the same piece of code can interact with mysql, sqlite3, and of course postgresql, provided you provide the correct data source. Code to connect to mysql:

  1. $dsn='mysql:host='.$dbhost.';dbname='.$dbdatabase.';'

  2. $dbh=new pdo($dsn,$username,$ userpass);
  3. sqlite3:

  4. $dsn='sqlite3:"c:sqliteuser.db"';
  5. $dbh=new pdo($dsn);
  6. postgresql:
  7. $dsn='pgsql:host='.$dbhost.' port=5432 dbname='.$dbdatabase.' user='.$username.' password='.$userpass;
  8. $dbh=new pdo($dsn);
Copy the code

After successfully establishing a connection with the database, you only need to obtain data from the database or insert and update data.

sql code:

  1. $stmt=$dbh->query('select id,name from user');
  2. $row=$stmt->fetch();
Copy code


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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

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

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.