-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mysql_* functions is deprecated, using MySQLi or PDO instead #16
Comments
HI @peter279k! MySQLi is currently supported(and the default). There is no PDO support at this point, but we haven't experienced situations where it's the only available option(i.e. where neither mysql_ no mysqli_ are available, but PDO is enabled). |
Hi @emohamed. thank you for your reply and explanation. I have seen that the Some suggestions I recommend are as follows:
These suggestions I think we can help them once they're accepted :). |
Hi @peter279k I think I see your point. You mean that currently if both
Sure, that would be great. Please feel free to fork the repo & open a pull request with the change. Thanks! |
As title, it seems that the
mysql_*
functions are deprecated/removed since PHP version is7.0
.And we should consider using the
PDO
andMySQLi
to be compatible withPHP-7.x
versions.The text was updated successfully, but these errors were encountered: