Puoi contattarci inviando una mail a info@living360.it o compilando il form sottostante, saremo lieti di risponderti.
';
}
if ( ! isset($_SESSION['formFooter'])) {
$_SESSION['formFooter'] = '';
}
if ( ! isset($_SESSION['form'])) {
$_SESSION['form'] = array();
}
function check($field, $type = '', $value = '') {
$string = "";
if (isset($_SESSION['form'][$field])) {
switch($type) {
case 'checkbox':
$string = 'checked="checked"';
break;
case 'radio':
if($_SESSION['form'][$field] === $value) {
$string = 'checked="checked"';
}
break;
case 'select':
if($_SESSION['form'][$field] === $value) {
$string = 'selected="selected"';
}
break;
default:
$string = $_SESSION['form'][$field];
}
}
return $string;
}
?>
Info