Password Reset

Please enter your e-mail address. You will receive a new password via e-mail.

Register

To register, select the date for your workshop from the
appropriate menu below. Use the Payment / Deposit button
if you would prefer to pay for part of a workshop at this time (be sure
to note which workshop you are interested in).

We use PayPal as our secure payment
service and you will be taken to their website to enter your payment information.
If you would like to register by mail or phone, please call Geoff Laughton
at 303-953-9215.

Return Home or to the Workshops page.

// pull course list
if (!($getCourses = mysql_query ("SELECT * FROM courses
ORDER BY CourseNum", $connection)))
showerror();

//put in rows
$count = 0;
while ($courseRow = mysql_fetch_array($getCourses)) {

$count = $count + 1;
$ThisCourseTitle = rteSafe(stripslashes($courseRow["CourseTitle"]));
$ThisCourseID = $courseRow["CourseID"];
$PPCourseTitle = stripslashes($courseRow["CourseTitle"]);
$ThisCourseNum = $courseRow["CourseNum"];
$ThisCartCode = rteSafe(stripslashes($courseRow["CartCode"]));

?>

// pull workshop schedule list
if (!($getSchedule = mysql_query ("SELECT *, UNIX_TIMESTAMP(StartDate) as WorkshopStart, UNIX_TIMESTAMP(EndDate) as WorkshopEnd
FROM schedule
WHERE CourseID = {$ThisCourseID}
ORDER BY StartDate", $connection)))
showerror();

if(mysql_num_rows($getSchedule) == 0) {

print "

There are no dates currently scheduled for this workshop. Please check back later.

\n”;

} else {

?>

Return Home or to the Workshops page.