Files
studiobeve.no/application/views/pages_20250312/beauty-booking-finished.php
T
2025-10-04 11:38:07 +02:00

13 lines
491 B
PHP
Executable File

<?php
include(getcwd().'/application/views/includes/beauty-skeleton-top.php');
$langArray = array('en', 'hu', 'no');
if(in_array($selectedLang, $langArray)){
include(getcwd().'/application/views/pages/includes/booking-finished-form-'.$selectedLang.'.php');
}
else{
include(getcwd().'/application/views/pages/includes/booking-finished-form-en.php');
}
include(getcwd().'/application/views/includes/beauty-skeleton-bottom.php');
?>