<?php
//--Class StudentEducation--------------------------

include_once "clsbase_StudentEducation.php";

class 
StudentEducation extends base_StudentEducation {

function 
RSStudentEducationByStId($stId){
    
$this->SetQuery("select * from StudentEducation where studentId='$stId' order by graduatedYear");
}

//--End class StudentEducation--
?>