/web/htdocs/www.micro-la.com/home/open/lingua.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
include('backend/_classes.php'); 
$classes = new classes();

$arr = array();
$arr['success'] = '';
if(!empty(
$_POST)){
    if(isset(
$_POST['valore']) && $_POST['valore'] != ''){
        
$_SESSION['defLanguageSito'] = $_POST['valore'];
        
$arr['success'] = 'success';
    }
}
echo 
json_encode($arr);


?>