duankui1532 2014-07-16 22:59
浏览 49
已采纳

PHP SQL Joomla存储表将两列放入数组并稍后回显它们

So I have a simple table with two columns. The table is called "mytable" and the columns are "product" and "id". The table has about 12 entries.

            $db = JFactory::getDbo();
            $query = "SELECT * FROM mytable";
            $db->setQuery($query);
            $results = $db->loadObjectList();

So I've gotten this far querying successfully but I want to call back the results of each row. That's the part I am stuck on. I need to store this into an array so I can later make a while loop spitting out each row. Also I cannot echo it right underneath that code. This needs to be stored in an array that is then pulled from another page and then I spit out each row. Thanks!

  • 写回答

2条回答 默认 最新

  • doukan3504 2014-07-17 06:21
    关注

    Try this,

            $db = JFactory::getDbo();
            $query = "SELECT * FROM mytable";
            $db->setQuery($query);
            $results = $db->loadObjectList();
            echo '<pre/>'
            print_r($results);//the resulted array is already in this variable you can iterate it later with foreach loop.
    

    for looping and printing

    foreach($results as $key=>$value){
     echo 'Product-->'.$value->product;
     echo 'ID-->'.$value->id;
    }
    

    check the Joomla DB query for more details.

    Hope it helps..

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 怎么在stm32门禁成品上增加记录功能
  • ¥15 Source insight编写代码后使用CCS5.2版本import之后,代码跳到注释行里面
  • ¥50 NT4.0系统 STOP:0X0000007B
  • ¥15 想问一下stata17中这段代码哪里有问题呀
  • ¥15 flink cdc无法实时同步mysql数据
  • ¥100 有人会搭建GPT-J-6B框架吗?有偿
  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 解riccati方程组