kreut Posted February 4, 2011 Share Posted February 4, 2011 How do I know whether my server supports Mysql or Mysqli? My guess is that I can just call my hosting company for the remote access, but what about my local testing server? Thanks! Quote Link to comment Share on other sites More sharing options...
artur.kaze Posted February 4, 2011 Share Posted February 4, 2011 mysql and mysqli are just extensions in php. You can see loaded extensions creating a file with this on it: <?php phpinfo(); ?> Quote Link to comment Share on other sites More sharing options...
thehippy Posted February 4, 2011 Share Posted February 4, 2011 Also, if you're testing in your application, the extension_loaded function is useful. And if you're at the command a simple php -m will give you a list of loaded extension, though be warned some systems have a different config for command line usage than loaded with the web server. Quote Link to comment Share on other sites More sharing options...
kreut Posted February 4, 2011 Author Share Posted February 4, 2011 Thanks so much! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.