Log in

View Full Version : Mysqli vs Mysql and CMS



Victro
06-16-2010, 12:14 PM
Hi I'm a newbie

My web host only runs MySQL 3.23.58 can I use Mysqli? I want to build my own simple CMS can anyone recommend good books or websites for building simple PHP/Mysql database CMS?:eek:

djr33
06-16-2010, 12:27 PM
http://php-mysql-tutorial.com

Click view all, then start from the last page at the bottom (they're in reverse order).


I believe that mysqli is just a component of PHP that works with any MySQL database-- so, yes, this will probably work with your system. There's no harm in trying.


As for mysqli "versus" mysql, I suggest reading a bit (just look around google). Basically they're the same thing and work in mostly identical ways, except that mysqli is "improved" in a few ways or at least it's said to be. There's no harm in using it (except that it's not as common as mysql), though many/most? designers still use mysql, perhaps just by habit.


Note: I have deleted your other duplicate post-- please only post a question once.

Victro
06-16-2010, 01:14 PM
thank you for the info