Information Security
System and network security is a very important issue.
In the last few years there has been a steady increase in the number of incidents relating to computer crime.
- If you require further advice please contact the helpdesk.
There are no current Security Alerts
\n";
} else {
print "
Current Security Alerts
|
| Date Received |
Description |
  |
Systems Affected |
Details |
";
$RowCount=0;
while ($row=mysql_fetch_row($res)) {
$RowCount++;
$rem = $RowCount % 2;
$StartDate = $row[6];
$FinishDate = $row[7];
list ($day, $tim) = split (' ', $StartDate);
list ($Year,$Month,$DayofWeek) = split ('-', $day);
list ($Hour,$Min,$sec) = split (':', $tim);
$MyStart = $Hour.':'.$Min.' on
'.$DayofWeek.'-'.$Month.'-'.$Year;
list ($day, $tim) = split (' ', $FinishDate);
list ($Year,$Month,$DayofWeek) = split ('-', $day);
list ($Hour,$Min,$sec) = split (':', $tim);
$MyFinish = $Hour.':'.$Min.' on
'.$DayofWeek.'-'.$Month.'-'.$Year;
if ( $rem == 0 ) {
print "";
} else {
print "
";
}
print "
| $MyStart |
$row[4] |
  |
$row[5] |
More Info |
";
}
}
print "
";
?>