From bcbc4c541645ace13715733fc4d8c370abc718e7 Mon Sep 17 00:00:00 2001 From: SoFresher <35538618+SoFresher@users.noreply.github.com> Date: Mon, 15 Oct 2018 21:04:30 +0100 Subject: [PATCH] Add "info about mysqli" (#18720) * Add "info about mysqli" Add the section "Some Important MYSQLi functions and their uses" Add the link "for more information" * Update index.md --- .../php/working-with-databases/mysqli/index.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/client/src/pages/guide/english/php/working-with-databases/mysqli/index.md b/client/src/pages/guide/english/php/working-with-databases/mysqli/index.md index b95cb55f750..442dead0516 100644 --- a/client/src/pages/guide/english/php/working-with-databases/mysqli/index.md +++ b/client/src/pages/guide/english/php/working-with-databases/mysqli/index.md @@ -8,6 +8,19 @@ This is a stub. This quick style guide will help ensure your pull request gets accepted. +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 + #### More Information: +Click here For more information about MYSQLi