dtlc84438 2018-01-02 02:22
浏览 28
已采纳

如何在codeigniter中正确设置flash_message?

I have a problem like this.I am using Code igniter to build a website.I want to pass a flash message when redirecting from a controller.For that I have make this code.

$data['message']=$this->session->set_flashdata('item', array('message' => 'Record created successfully','class' => 'success'));
var_dump($data['message']);
return;
redirect('question/index',$data);

Then i used var_dump to make sure that everything is work fine.but it print null.What is the issue of this.How can I fix this?

  • 写回答

3条回答 默认 最新

  • ds3016 2018-01-02 13:33
    关注

    Full code for flash message :

    Controller :

          $query = $this->db->insert(table_name,$array_data);
    
          if($query){
            $this->session->set_flashdata('success', 'Sucessful added Multiple Image');
            redirect($this->redirect);
          }
          else{
            $this->session->set_flashdata('error', 'Something is wrong. Error!!');
            redirect($this->redirect);
          }
    

    alert.php(view file)

    <?php if ($this->session->flashdata('success')) { ?>
    
            <div class="alert alert-success">
              <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
                <strong><?php echo $this->session->flashdata('success'); ?></strong>
            </div>
    
    <?php } ?>
    
    <?php if ($this->session->flashdata('error')) { ?>
    
            <div class="alert alert-danger">
                <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
                <strong><?php echo $this->session->flashdata('error'); ?></strong>
            </div>
    
    <?php } ?>
    

    List.php(view file)

    <?php
        $this->load->view('alert');
     ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程