Hands On Clinical Courses
The Colorado School of Dental Assisting offers a fast-track program enabling students to quickly and affordably obtain skills and professional certification necessary to secure a position as a dental assistant. Whether you are taking your first dental assisting course or looking to enroll in EDDA training, we can help.
Learn by Doing! Our classes teach what longer programs do in a fraction of the time, saving you time and money. Dental Assisting is a hands-on career in health care, and should be taught with ample access to proper dental equipment. Small class sizes and experienced, professional instructors, assist in making our clinical courses a smart choice for dental assistants and people new to the field.
Register 30 days before the start of each session
and receive $200 off tuition!
Enroll Now! or call 800-383-3408.
eof;
$res = $db->query("SELECT * FROM courses WHERE (courseFormat='In-Person' OR courseFormat='Both') AND courseVisible='y' ORDER BY sortOrder ASC, courseName ASC");
print"Available Courses
";
print<<
eof;
while($res->fetchInto($row)){
$row->courseObjectives=nl2br($row->courseObjectives);
$product_id = $db->getOne("SELECT product_id FROM coursesToProducts WHERE course_id='$row->course_id' AND courseFormat='Online'");
if($product_id!=""){
$buyLink = "
Buy Now";
}else{
$buyLink="";
}
$row->courseDesc = nl2br($row->courseDesc);
print<<
$row->courseName
Course Description:
$row->courseDesc
More Information
eof;
/*
print<<
UPCOMING $row->courseName Dates
eof;
$q = "SELECT courses.*, courseSchedule.* FROM courseSchedule LEFT JOIN courses USING(course_id) WHERE courseSchedule.course_id='$row->course_id' AND courseSchedule.startDate>NOW() ORDER BY courseSchedule.startDate ASC";
$result = $db->query($q);
while ($result->fetchInto($row)) {
$time->dbdate = $row->startDate;
$startMonth = $time->datetime2monthname();
$startDay = $time->datetime2day();
$startYear = $time->datetime2year();
$time->dbdate = $row->endDate;
$endDay = $time->datetime2day();
$endMonth = $time->datetime2monthname();
$endYear = $time->datetime2year();
$row->coursePrice=number_format($row->coursePrice,2);
$product_id=$db->getOne("SELECT product_id FROM coursesToProducts WHERE courseSchedule_id='$row->courseSchedule_id'");
print<<
$startMonth $startDay $startYear - $endMonth $endDay, $endYear -- $row->courseLocation
Register Now
eof;
}
print"
";
*/
print" ";
}
break;
}
include("inc/foot.php");
?>