Timetable Has Not Created For This Class.
';
$response['status'] = 1;
} else {
$response['status'] = 2;
$session = unserialize($get_heading->heading);
$tt_query = $wpdb->prepare("SELECT * FROM $tt_table WHERE class_id = %d",$class_id);
$tt_days=$wpdb->get_results($tt_query,ARRAY_A);
foreach($tt_days as $ttd){
$timetable[$ttd['day']][$ttd['time_id']]=$ttd['subject_id'];
}
$ses_info = $wpdb->get_results("Select * from $wpsp_hours_table");
foreach($ses_info as $time){
$period_times[$time->id]=array('start'=>$time->begintime,'end'=>$time->endtime,'type'=>$time->type);
}
?>