Issue
I’m about to start work converting my mysql queries to mysqli, and am wondering if installing mysqli will kill all my currrent mysql queries? Or do they play nicely together so that I can convert to mysqli over the next few weeks without killing all the mysql on my test server?
Solution
I guess your are talking about php extension. mysql extension is deprecated as of php 5.5.0 It will work for now but eventually it should be removed. So for now you can convert to mysqli over the next few weeks.
Answered By – Yalamber
Answer Checked By – David Goodson (BugsFixing Volunteer)