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