lang, signout

This commit is contained in:
2021-06-18 17:49:10 -04:00
parent 6907d88fcb
commit 5e4b57ebad
4 changed files with 262 additions and 265 deletions

View File

@@ -67,12 +67,12 @@
<?php // FILTER POSTED DATA
$form_data = filter_input_array(INPUT_POST, [
'fd_formAction' => (string)FILTER_SANITIZE_STRING,
'fd_pageNumber' => (int)FILTER_VALIDATE_INT,
'fd_endVisitForId' => (int)FILTER_VALIDATE_INT
'fd_formAction' => (string)FILTER_SANITIZE_STRING,
'fd_pageNumber' => (int)FILTER_VALIDATE_INT,
'fd_endVisitForId' => (int)FILTER_VALIDATE_INT
]);
if(empty($form_data['fd_formAction'])){
$form_data['fd_formAction'] = 'fa_initial'; // SET INITIAL STAGE
if(empty($form_data['fd_formAction'])){ // SET INITIAL STAGE
$form_data['fd_formAction'] = 'fa_initial';
}
?>