Files
cwsvJudo/homepage/mams/lib/api.php
marko b6f6bbbacc - Usage of materialize css framework
- outsourcing functions to new lib/api.php
2020-10-27 06:40:33 +01:00

11 lines
193 B
PHP

<?php
function processPostData($db, $post){
if($post['action']){
giveJudokasAttendence($db, $post['attandanceDate'], $post['judokaIdsInTraining']);
header("Location: .");
}
return;
}
?>