예제 #1
0
파일: db.php 프로젝트: schen384/MentorWeb
function updateMaxMenteesPerMentor()
{
    include_once "mentor_maximum.php";
    $currentValue = retrieveMaxMenteesPerMentor();
    $minValue = calcMinMaxMenteesPerMentor();
    if ($currentValue < $minValue) {
        setMaxMenteesPerMentor($minValue);
    }
}
예제 #2
0
function getMinMaxMenteesPerMentor()
{
    $minMenteesPerMentor = calcMinMaxMenteesPerMentor();
    print $minMenteesPerMentor;
}