try like this if it works but not sure
while($row = mysql_fetch_array($result))
{
$class_time = $row['time_start'].'-'.$row['time_end'];
echo '<br /><br />TIME:'.$class_time.'<br /><br />';
while($row = mysql_fetch_object($result))
{
$class_time = $row['time_start'].'-'.$row['time_end'];
$selectorData[] = array(
CS_SOURCE_ID=>$row->class_date,
CS_SOURCE_LABEL=>$row->class_date,
CS_TARGET_ID=>$class_time,
CS_TARGET_LABEL=>$row->$class_time);
} }