利用した
$member_id = 12;
$results = db_query("select * from {customorders} where id = :fid", array(':fid' => $member_id));
foreach($results as $result) {
$name = $result['name'];
}
しかし、私はエラーが発生しますFatal error: Cannot use object of type stdClass as array
解決策は何でしょうか。selectのクエリを間違って書いた場合は修正してください
「select * from customorders where id = 12」が必要で、customorders は Drupal データベースで作成したカスタム テーブルです
私を助けてください..
ありがとう