Rev | Line | |
---|
[2] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | /************************************************************************/
|
---|
| 4 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
| 5 | /* by Luciano Apolito & Roberto Gigli */
|
---|
| 6 | /* http://www.eleonline.it */
|
---|
| 7 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
| 8 | /************************************************************************/
|
---|
| 9 | if (!defined('MODULE_FILE')) {
|
---|
| 10 | die ("You can't access this file directly...");
|
---|
| 11 | }
|
---|
| 12 | $param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ?
|
---|
| 13 | $_GET : $_POST;
|
---|
| 14 | if (isset($param['pos'])) $cur=$param['pos']; else $cur='';
|
---|
| 15 | $xml=$_SESSION[$cur];
|
---|
| 16 | unset($_SESSION[$cur]);
|
---|
| 17 | echo $xml;
|
---|
| 18 | ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.