libreto/snippets/controller.php
Ventricule da13fb7f55 Launch !
2018-02-19 22:48:41 +01:00

8 lines
191 B
PHP

<?php
// export
if(isset($_GET['export'])):
export();
// redirect to same page without url parameters
$url = strtok($_SERVER["REQUEST_URI"],'?');
header('Location: ' . $url );
endif;