dongpai2754 2015-06-28 06:40
浏览 43
已采纳

使用codeigniter从post数组中获取数据

I'm trying to post an array that is name="std_id[]" from view page.But in controller while trying to print the array using print_r($std_id) I can't find any data. The code is given below..

In view page:

<?php
foreach ($all_student as $v_student) {
?>
<tr><td style="display:none"><input type="text" value="<?php echo $v_student->std_id ?>" name="std_id[]"></td>
<td class="center"><?php echo $v_student->std_name; ?></td>
<?php }?>

In controller function:

$std_id = $this->input->post("std_id[]", true);
print_r($std_id);
exit();
  • 写回答

1条回答 默认 最新

  • doupi6737 2015-06-28 06:44
    关注

    You are referencing the input name wrong. You need to change the line

    $std_id = $this->input->post("std_id[]", true);
    

    With:

    $std_id = $this->input->post("std_id", true);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 CSS通配符清除内外边距为什么可以覆盖默认样式?
  • ¥15 SPSS分类模型实训题步骤
  • ¥15 求解决扩散模型代码问题
  • ¥15 工创大赛太阳能电动车项目零基础要学什么
  • ¥20 limma多组间分析最终p值只有一个
  • ¥15 nopCommerce开发问题
  • ¥15 torch.multiprocessing.spawn.ProcessExitedException: process 1 terminated with signal SIGKILL
  • ¥15 QuartusⅡ15.0编译项目后,output_files中的.jdi、.sld、.sof不更新怎么解决
  • ¥15 pycharm输出和导师的一样,但是标红
  • ¥15 想问问富文本拿到的html怎么转成docx的