search
HomeBackend DevelopmentPHP TutorialHow to use PHP functions for database connection and operation?

How to use PHP functions for database connection and operation?

Jul 24, 2023 pm 03:17 PM
phpoperateDatabase Connectivity

How to use PHP functions for database connection and operation?

PHP is a scripting language that is widely used in Web development and has strong capabilities in processing databases. You can use PHP functions to connect and operate with the database, and easily add, delete, modify and query data. This article will introduce how to use PHP functions for database connections and common database operations, and provide relevant code examples.

1. Database connection

First, we need to use PHP function to connect to the database. PHP provides multiple functions for different types of database connections, such as MySQL, PostgreSQL, etc. The following is an example of a database connection using MySQL:

<?php
$servername = "localhost";  // 数据库服务器名称
$username = "root";         // 数据库用户名
$password = "password";     // 数据库密码
$dbname = "myDB";           // 数据库名称

// 创建连接
$conn = new mysqli($servername, $username, $password, $dbname);

// 检查连接是否成功
if ($conn->connect_error) {
    die("连接失败: " . $conn->connect_error);
}
echo "连接成功";
?>

In the above example, we use the mysqli function to create a MySQL database connection. First, we need to specify parameters such as the name of the database server, user name, password, and database name. Then create a connection object through the new mysqli() function. If the connection fails, the code will provide relevant error prompts; if the connection is successful, a successful connection prompt will be output.

2. Execute database query

After connecting to the database, we can perform various operations on the database, such as insert, update, delete, etc.

  1. Insert data
<?php
$sql = "INSERT INTO employees (name, age, address) 
        VALUES ('John Doe', 30, '123 Main St')";

if ($conn->query($sql) === true) {
    echo "插入数据成功";
} else {
    echo "插入数据失败: " . $conn->error;
}
?>

In the above code, we use the INSERT INTO statement to insert a piece of data into the employees table in the corresponding field. If the insertion is successful, a prompt indicating that the data was successfully inserted is output; if it fails, a failure prompt and specific error information are output.

  1. Update data
<?php
$sql = "UPDATE employees 
        SET name='Jane Doe', age=28 
        WHERE id=1";

if ($conn->query($sql) === true) {
    echo "更新数据成功";
} else {
    echo "更新数据失败: " . $conn->error;
}
?>

In this example, we use the UPDATE statement to update the employees table with id 1 The recorded field value. If the update is successful, a prompt indicating that the updated data is successful will be output; if it fails, a failure prompt and specific error information will be output.

  1. Delete data
<?php
$sql = "DELETE FROM employees WHERE id=1";

if ($conn->query($sql) === true) {
    echo "删除数据成功";
} else {
    echo "删除数据失败: " . $conn->error;
}
?>

The above code uses the DELETE FROM statement to delete the record with id 1 from the employees table . If the deletion is successful, a prompt indicating that the data was successfully deleted is output; if it fails, a failure prompt and specific error information are output.

3. Query data

In addition to performing insert, update and delete data operations, we can also perform query operations and obtain query results.

<?php
$sql = "SELECT id, name, age, address FROM employees";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
    while ($row = $result->fetch_assoc()) {
        echo "id: " . $row["id"]. "; Name: " . $row["name"]. "; Age: " . $row["age"]. "; Address: " . $row["address"]. "<br>";
    }
} else {
    echo "0 结果";
}
?>

In the above code, we use the SELECT statement to get all the records from the employees table. Fetch each record through the $result->fetch_assoc() function and output it to the page.

Finally, you need to remember to close the database connection:

<?php
$conn->close();
?>

The above is a simple example of using PHP functions for database connection and operation. Through the flexible use of PHP functions, we can easily interact with the database and perform various operations. I hope this article can help you understand and master PHP database operations.

The above is the detailed content of How to use PHP functions for database connection and operation?. For more information, please follow other related articles on the PHP Chinese website!

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
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

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 Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools