Discuz x2.5 Database read error, ask the hero pointing!

Source: Internet
Author: User
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?? What is the name of the product?


Reply to discussion (solution)

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)));

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)));



Thank you for your guidance
I want to put the value of Cate_name in a two-dimensional array one output? How to do it?

foreach (Db::fetch_all ($sql _store) as $row) {  echo $row [' Cate_name ']. '
';}

foreach (Db::fetch_all ($sql _store) as $row) {  echo $row [' Cate_name ']. '
';}




In PHP, there are:
$sql _store = ' SELECT cate_name from Ecm_scategory ORDER by Sort_order ';
$my _category=db::fetch_all ($sql _store);

In HTML, this should be the case with loops.

{eval echo ($v [' cate_name])}


Is that OK? Thank you Moderator guidance!
  • 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.