Mysqli

4 posts by 4 authors in: Forums > CMS Builder
Last Post: February 26, 2014   (RSS)

By incube - December 19, 2013

Would it be in the future plan to integrate CMSBuilder with the mysqli extension ?

PHP 5.4 has depreciated the extension of mysql

Thank you

By ross - December 20, 2013

Hi there

Thanks for posting! We are always looking for ways to maximize our support for different versions of PHP and MySQL so I imagine we will eventually adopt most new options in PHP. Having said that though, there are no specific plans for when support on mysqli is going to work it's way in.

Are you on our newsletter yet? 

http://www.interactivetools.com/news/archive.php

That's the best way for us to keep you up to date on the latest developments in CMS  Builder.

-----------------------------------------------------------
Cheers,
Ross Fairbairn - Consulting
consulting@interactivetools.com

Hire me! Save time by getting our experts to help with your project.
Template changes, advanced features, full integration, whatever you
need. Whether you need one hour or fifty, get it done fast with
Priority Consulting: http://www.interactivetools.com/consulting/

I think you need to address this sooner rather than later. It is not that onerous to develop code that can be use with mysql or mysqli and branch accordingly. Here is a sample:

$g_link = mysql_connect( 'localhost', 'username', 'password')
if
(is_resource($g_link)&& get_resource_type($g_link)=='mysql link'){
  echo
'MYSQL';
} else {
  if(is_object($g_link)&& get_class($g_link)=='mysqli'){
    echo 'MYSQLI';
 
}
}

Jeff Shields