idea@living360.it indicando tutte le informazioni richieste nel modulo cliente (pdf o xls)
oppure
compila il form sottostante. In entrambi i casi ti verrà inviata una mail di conferma del preventivo con indicati gli estremi per il pagamento.';
}
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;
}
?>