7 lines
190 B
PHP
7 lines
190 B
PHP
<?php
|
|
header("Content-Disposition: attachment; filename=".str_replace(":", "_", $_GET["v"]).".rdp");
|
|
header("Content-Type: application/rdp");
|
|
print "full address:s:${_GET[v]}\n";
|
|
exit();
|
|
?>
|