Job placement services are provided for HCC students and alumni. Please contact us only if you are HCC students
or alumni.
See also Ongoing Workshops & Events
Click on the links below to view jobs listing or click Job
Listings and login to search for job(s) and get job referral(s)
(Note: Our secure website for job search & referral
generation will be downed every Wednesday from 4:30pm to 8:00am the next day for maintenance. We apologize for any inconveniences.)
Jobs are listed in order starting with the recently posted jobs.
$monthNames = array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
$date = getdate(mktime()); $month = $date["mon"];
$current = $month;
for ($i = 0; $i <= 12; $i++)
{
if ($current == 0) { $current = $current + 12; }
else
{
$html = "- " . $monthNames[$current-1] . "
\n";
Print $html;
$current = $current - 1;
}
}
?>