Cannot get data from table of WordPress MYSQL
-
Hi, I got a table called
newdataand there is a column calledname. I’m trying to get the value ofnamewhere the ID is1by the following code:<?PHP $my_plugin = 'C:\laragon\www\NewSite\wp-config.php'; include_once($my_plugin); $table_name = $wpdb->prefix . 'newdata'; ?>the result is
arrayif$results = $wpdb->get_col($wpdb->prepare("SELECT name FROM $table_name WHERE id = 1"));and the result is1if$results = $wpdb->query($wpdb->prepare("SELECT name FROM $table_name WHERE id = 1"));.But the value is actually
blue, anything I do wrong?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Cannot get data from table of WordPress MYSQL’ is closed to new replies.