Codeigniter在foreach循环内向对象(stdClass)添加新的键和值

时间:2015-07-08 06:51:33

标签: php codeigniter

我正在尝试将另一个键和值添加到foreach循环内的数组中。 我有以下数组。

       foreach ($query->result() as $row) {
            $data[] = $row;
         }
        var_dump($data);
        return $data;

和php代码

{{1}}

我想将密钥[fields]和值字符串添加到其中。

1 个答案:

答案 0 :(得分:2)

试试这个

<form id="contact-form" action="exec.php" method="post" enctype="multipart/form-data">
            <fieldset>
              <label><span class="text-form">Name:</span>
                <input name="p1" type="text" />
              </label>
              <label><span class="text-form">Email:</span>
                <input name="p2" type="text" />
              </label>
              <div class="wrapper">
                <div class="text-form">Message:</div>
                <textarea></textarea>
              </div>
              <div class="buttons"> <a class="button-2" href="#">Clear</a> <a class="button-2" href="exec.php">Send</a> </div>
            </fieldset>
          </form>