私は持っている:
$value = $wpdb->get_row("SELECT custom_message FROM `wp_wpsc_cart_contents` WHERE purchaseid='" . $purchase_log['id'] . "'");
私が行った場合:
print_r($value);
私は得る:
stdClass Object
(
[custom_message] => |Castor Seed Oil $4.45|
)
だから私はその値を取得しようとしました:
foreach($value as $index => $result) {
echo $result["custom_message"];
}
私も試しました:
foreach($value as $index => $result) {
echo $result->custom_message;
}
but that prints nothing, any idea what I'm doing wrong here?