• devboy

    (@devboy)


    Hello.
    I use two websites with their own databases on my server. One is wordpress personal website and other is opencart web shop. What i would like to do is fetch some of the data from opencart database and display it on my wordpress page.

    My code inside wordpress file:

    $mydb = new wpdb('user','pass','dbs','localhost');
    $rows = $mydb->get_results("SELECT key FROM setting");
    print_r($rows);

    What I get is an empty array, although the column exist and it is filled with content.

    Whats funny is that it works with some column names inside the same table. But not with the column i want.

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘$wpdb get_results is empty’ is closed to new replies.