使用表助手Codeigniter在每一行中添加表单

时间:2012-12-15 04:31:25

标签: php codeigniter

您好我正在使用表助手创建表,但在每一行中我想添加表单,在这样的html中:

<table>
  <form action="">
  <tr>
    <td><input type="text" name="name2"></td>
  </tr>
  </form>

  <form action="">
  <tr>
    <td><input type="text" name="name2"></td>
  </tr>
  </form>
</table>

但我想在表助手:  我试过这个:

    $this->table->add_row(
                form_open('myAction').
                form_input('name'.$i),
                form_submit('Submit')
                form_close()
        );

我使用萤火虫来检查元素产生,如下所示:

   <table>
     <tr>
       <form action="myAction">
         <td><input type="text" name="name1"></td>
       </form>
          <td><input type="submit"></td>
      </tr>
  </table>

为什么标签不会显示在最后一个标签上,而是显示在第一个标签上。

由于

1 个答案:

答案 0 :(得分:0)

你错过了一些点

$this->table->add_row(
            form_open('myAction').
            form_input('name'.$i).
            form_submit('Submit').
            form_close()
    );