what is mysqli

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
deeppak
Forum Commoner
Posts: 27
Joined: Thu Apr 06, 2006 6:31 am

what is mysqli

Post by deeppak »

i am stuck i was ordinarily using mysql_query to run any statement but my pl now asking me to use mysqli what is this to run prepare statement is any configuration required for it


reply soon

deeppak
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Post by Benjamin »

Your search - i am stuck i was ordinarily using mysql_query to run any statement but my pl now asking me to use mysqli what is this to run prepare statement is any configuration required for it - did not match any documents.
jmut
Forum Regular
Posts: 945
Joined: Tue Jul 05, 2005 3:54 am
Location: Sofia, Bulgaria
Contact:

Re: what is mysqli

Post by jmut »

deeppak wrote:i am stuck i was ordinarily using mysql_query to run any statement but my pl now asking me to use mysqli what is this to run prepare statement is any configuration required for it


reply soon

deeppak
http://php.net/mysqli
I wonder what is this reply soon for??!
User avatar
dibyendrah
Forum Contributor
Posts: 491
Joined: Wed Oct 19, 2005 5:14 am
Location: Nepal
Contact:

using mysqli

Post by dibyendrah »

You need to have PHP5 installed in order to use mysqli. The extension is called mysqli, with the 'i' standing improved.

After uncommenting the following line, restart the apache server inorder to use mysqli feature.

Code: Select all

;extension = mysqli.so

Hope this will help!
Post Reply