1

1) - The Controller Code

class Welcome extends CI_Controller {
    public function index()
    {
        $dataView['content'] = $this->load->view('crud_view','', TRUE);
        //$dataView['content'] = 'crud_view';
        $this->load->view('masterpageTeste',$dataView);

    }
}

2) - The Section on MasterPage where I want to include the view's content

        <section class="content">
            <div class="row">
                <div class="col-md-12">
                    <?php
                    //$this->load->view($content);
                    echo $content;
                    ?>
                </div>
            </div>
        </section>

The problem facing is that the view has datatable code

0 Answers0