top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is use for PHPMYSQLi?

0 votes
419 views
What is use for PHPMYSQLi?
posted Jun 30, 2018 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

PHP MySQLi is nothing but PHP MySQL Improved. The MySQLi functions allows you to access MySQL database servers.
The MySQLi extension is designed to work with MySQL version 4.1.13 or newer.

answer Jun 30, 2018 by Madhavi Latha
0 votes

The MySQLi Extension (MySQL Improved) is a relational database driver used in the PHP scripting language to provide an interface with MySQL databases. There are three main API options when considering connecting to a MySQL database server: PHP's MySQL Extension.

MySQLi can be done procedural and object-oriented whereas MySQL can only be used procedurally. Mysqli also supports prepared statements which protect from SQL Injection.

answer Jun 20, 2019 by Siddhi Patel
Similar Questions
+1 vote

Also, tell me the difference between them.I know about empty() function(It will used to check whether the variable is empty or not).I wonder to know what's the main use for is_null() function.

0 votes

I have a question about using a php user class and session variables. Let's say that I have managed to create a user class that finds a particular person from the database query.

As I move about the site from page to page it would be nice to be able to use the current user inside the user class without needing to re – look them up in the database multiple times

Q: so is there a way to combine the current active user in the class with session variables so that they can be used multiple times? If so, how would this work?

...