
* Il faudra faire une solution plus propre, c'est juste pour commiter des changes darcs-hash:20090306075901-bd074-45690e201de838132f1a94901b4a625a50f8a31d.gz
7 lines
No EOL
179 B
PHP
7 lines
No EOL
179 B
PHP
<?php
|
|
$data = split(";", $_SERVER["REDIRECT_QUERY_STRING"]);
|
|
$type = $data[0];
|
|
$data = split(",", $data[1]);
|
|
header("Content-type: ".$type);
|
|
echo base64_decode($data[1]);
|
|
?>
|