Meet Our Team

Dedicated educators and administrators committed to excellence in early childhood and basic education

School Management

Our leadership team guiding the vision and direction of Raymond Schools

prepare("SELECT * FROM teachers WHERE section = 'Management' AND status = 'active' ORDER BY display_order ASC, id ASC"); $stmt->execute(); $management_staff = $stmt->fetchAll(PDO::FETCH_ASSOC); if (empty($management_staff)) { echo '

No Management Staff Found

Management team information will be available soon.

'; } else { echo '
'; foreach ($management_staff as $staff) { $image_path = !empty($staff['image']) ? $staff['image'] : 'images/staff/placeholder.jpg'; $section_class = 'section-' . strtolower(str_replace(' ', '-', $staff['section'])); echo '
' . htmlspecialchars($staff['name']) . '
' . htmlspecialchars($staff['section']) . '

' . htmlspecialchars($staff['name']) . '

' . htmlspecialchars($staff['position']) . '
' . (!empty($staff['qualification']) ? '
Qualification: ' . htmlspecialchars($staff['qualification']) . '
' : '') . ' ' . (!empty($staff['experience']) ? '
Experience: ' . htmlspecialchars($staff['experience']) . '
' : '') . ' ' . (!empty($staff['bio']) ? '
' . htmlspecialchars($staff['bio']) . '
' : '') . '
'; } echo '
'; } } catch (Exception $e) { echo '

Unable to Load Staff Information

Please try again later.

'; } ?>

Teaching Staff

Our dedicated educators across all school sections

prepare("SELECT * FROM teachers WHERE section != 'Management' AND status = 'active' ORDER BY section, display_order ASC, id ASC"); $stmt->execute(); $teaching_staff = $stmt->fetchAll(PDO::FETCH_ASSOC); if (empty($teaching_staff)) { echo '

No Teaching Staff Found

Teaching staff information will be available soon.

'; } else { echo '
'; foreach ($teaching_staff as $staff) { $image_path = !empty($staff['image']) ? $staff['image'] : 'images/staff/placeholder.jpg'; $section_class = 'section-' . strtolower(str_replace(' ', '-', $staff['section'])); echo '
' . htmlspecialchars($staff['name']) . '
' . htmlspecialchars($staff['section']) . '

' . htmlspecialchars($staff['name']) . '

' . htmlspecialchars($staff['position']) . '
' . (!empty($staff['qualification']) ? '
' . htmlspecialchars($staff['qualification']) . '
' : '') . ' ' . (!empty($staff['experience']) ? '
Experience: ' . htmlspecialchars($staff['experience']) . '
' : '') . ' ' . (!empty($staff['bio']) ? '
' . htmlspecialchars($staff['bio']) . '
' : '') . '
'; } echo '
'; } } catch (Exception $e) { echo '

Unable to Load Teaching Staff

Please try again later.

'; } ?>