Sunday, 16 December 2018

Wordpress different database Error establishing a database connection

I am trying to get data from different mysql database(different server) in my wordpress site, but having the Error establishing database connection.



$seconddb= new wpdb('DB_USER','DB_PASSWORD', 'DB_NAME', 'DB_HOST');



Its working perfectly in local development, but in hosting site provides the error.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...