Can I Use MySQLi and PHP5 Syntax Within CodeIgniter? Can I Use MySQLi and PHP5 Syntax Within CodeIgniter? codeigniter codeigniter

Can I Use MySQLi and PHP5 Syntax Within CodeIgniter?


Yes. You can use whatever features in the version of PHP that you are running. Codeigniter runs fine on PHP5.

Also, Codeigniter includes a database driver for mysqli which can be set in system/application/config/database.php as:

$db['default']['dbdriver'] = "mysqli";