alternative to mysql_nd functions

78 views Asked by At

I moved my php code to a new hosting which missing mysql_nd and a have more than 150 functions that use stmt->get_result() and fetch_assoc.

Is there a function that can do the same work of stmt->get_result() and fetch_assoc and give the exact results so I can fix the problem without having to modify all the functions?

1

There are 1 answers

0
Stefano Pascazi On

You have two choices. The first is to contact your provider indicating that you need MySql Native Driver. The second is to review all your code as a PDO or alternatively MySqli (PDO Council). In terms of time, with the second option we invest a little more, but for sure you will make your application more stable and secure. I would personally use it for the second hypothesis.