GREAT PROGRAM however i need help changing a line from time to read periods ::: function get_hour_header($th, $startDay, $endDay, $timespan) {
global $conf;
$header = ‘’;
// Write out the available times
foreach ($th as $time => $cols) {
$header .= "<td colspan="$cols">$time</td>";
}
// Close row, start next
$header .= "</tr>n<tr class="scheduleTimes">n";
// Compute total # of cols
$totCol = intval(($endDay - $startDay) / $timespan);
// Create the fraction hour minute marks
for ($x = 0; $x < $totCol; $x++)
$header .= '<td> </td>';
return $header;
}