Discuz x2.5 in the database read exception, ask the hero pointing

Source: Internet
Author: User
Discuz x2.5 Database read error, ask the hero pointing!
The code in bargai_indexphp in Source\module\bargai is:
$sql _store = ' SELECT cate_name from Ecm_scategory ORDER by Sort_order ';
$my _category= implode (", Db::fetch_all ($sql _store));

The code in bargai_index.html in Template\default\bargai is:







The display in IE can be:
Array, array, array, array, array, array, array, array, array, array, array, array.
Why can't I output the data in Cate_name--the name of the product?


------to solve the idea----------------------
Implode only one-dimensional arrays can be concatenated into strings
Your db::fetch_all apparently returned a two-dimensional array.
To write like this
$my _category = Implode (", Array_map (' Implode ', Db::fetch_all ($sql _store)));

------to solve the idea----------------------
foreach (Db::fetch_all ($sql _store) as $row) {
echo $row [' Cate_name ']. '
';
}
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.