Last change
on this file since 388 was 360, checked in by roby, 3 years ago |
ATTENZIONE: con questa rev viene cambiato il charset che da ora viene impostato su utf8. Fate tutte le vostre verifiche prima di installarla.
Seconda fase di rivisitazione e completamento delle funzioni necessarie per l'accesso al servizio tramite cellulare.
Effettuate alcune sistemazioni per gli avvisi di incongruenza.
|
File size:
751 bytes
|
Line | |
---|
1 | <?php
|
---|
2 | $param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ? $_GET : $_POST;
|
---|
3 | global $prefix,$dbi;
|
---|
4 | if (isset($param['id_cons_gen']))
|
---|
5 | $id_cons_gen2=intval($param['id_cons_gen']);
|
---|
6 | if (isset($param['id_comune']))
|
---|
7 | $id_comune2=intval($param['id_comune']);
|
---|
8 | $sql="select descrizione from ".$prefix."_ele_consultazione where id_cons_gen='$id_cons_gen2'";
|
---|
9 | $result = $dbi->prepare("$sql");
|
---|
10 | $result->execute();
|
---|
11 |
|
---|
12 | list($nomeFile) = $result->fetch(PDO::FETCH_NUM);
|
---|
13 | #$nomeFile="backup";
|
---|
14 | header( 'Content-Type: application/octet-stream; charset=utf-8' );
|
---|
15 | header( 'Content-Disposition: attachment; filename="'.$nomeFile.'"' );
|
---|
16 | #header( 'Content-Length:'.strlen( $content ) );
|
---|
17 | header( 'Content-Transfer-Encoding: binary' );
|
---|
18 | include("backup2.php");
|
---|
19 | exit(0);
|
---|
20 |
|
---|
21 | ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.