Welcome Guest, Not a member yet? Register   Sign In
Open in a new window
#1

(This post was last modified: 07-07-2018, 01:03 AM by kayinja.denis.)

Hello,

I have this code but I'd like the view to open in a new window, I've tried various sources but failed to work

PHP Code:
public function getStudentReport()
 
   {
 
       $schoolorclass $this->input->post('schoolorclass');
 
       $reportfor $this->input->post('reportfor');

 
       if ($reportfor == 'schoolyear') {
 
           if($schoolorclass !='school'){

 
               $this->data['classID'] = $classID $this->input->post('classID');
 
               $this->data['sectionID'] =$sectionID $this->input->post('sectionID');
 
               $this->data['value'] = $value $this->input->post('value');

 
               if($sectionID == 0){
 
                   $this->data['students'] = $this->studentrelation_m->get_student_report_all($value$classID);
 
               }else{

 
                   $this->data['students'] = $this->studentrelation_m->get_studentSection_report_all($value$classID$sectionID);
 
               }
 
               echo $this->load->view('report/student/StudentAdmitted'$this->datatrue);               
            
}else{
 
               echo "<h4 class='text-danger'>'PLEASE SELECT A CLASS!' </h4>";
 
           }



How can i make this view or url (report/student/StudentAdmitted)  to open in a new window

thanks
Reply


Messages In This Thread
Open in a new window - by kayinja.denis - 07-07-2018, 01:02 AM
RE: Open in a new window - by kierownik - 07-07-2018, 03:48 AM
RE: Open in a new window - by kayinja.denis - 07-07-2018, 06:27 AM
RE: Open in a new window - by kierownik - 07-07-2018, 07:02 AM
RE: Open in a new window - by kayinja.denis - 07-09-2018, 03:00 PM



Theme © iAndrew 2016 - Forum software by © MyBB