2018-10-04 14:47:55 +01:00
|
|
|
---
|
|
|
|
title: MySQLi
|
|
|
|
---
|
|
|
|
## MySQLi
|
|
|
|
|
2018-10-15 21:04:30 +01:00
|
|
|
MYSQLi functions allow access to the database.
|
|
|
|
MYSQLi is an improved version of MYSQL
|
|
|
|
|
|
|
|
#### Some Important MYSQLi functions and their uses:
|
|
|
|
mysqli_connect() ==> Opens a new connection to the MySQL server
|
|
|
|
mysqli_query() ==> Performs a query against the database
|
|
|
|
mysqli_error() ==> Returns the last error description for the most recent function call
|
|
|
|
mysqli_close() ==> Closes a previously opened database connection
|
|
|
|
mysqli_connect_error() ==> Returns the error description from the last connection error
|
|
|
|
mysqli_select_db() ==> Changes the default database for the connection
|
|
|
|
mysqli_fetch_assoc() ==> Fetches a result row as an associative array
|
|
|
|
|
2018-10-04 14:47:55 +01:00
|
|
|
|
|
|
|
#### More Information:
|
|
|
|
<!-- Please add any articles you think might be helpful to read before writing the article -->
|
2018-10-15 21:04:30 +01:00
|
|
|
<a href="https://www.w3schools.com/php/php_ref_mysqli.asp">Click here</a> For more information about MYSQLi
|