├── .gitignore ├── .vscode └── settings.json ├── Combine.html ├── LICENSE ├── README.md ├── ajax.html ├── ajax.js ├── ajax_browser.php ├── ajax_combine.php ├── ajax_icondata.php ├── browser.html ├── dc ├── basic.css ├── basic.php ├── create_page.php ├── create_user.php ├── download.php ├── dump.php ├── hidden.php ├── icondata.php ├── index.php ├── login.php ├── logout.php ├── rename.php ├── template │ ├── _basic_body.html │ ├── _basic_empty.html │ ├── _basic_end.html │ ├── _basic_start.html │ ├── _footer.html │ └── _header.html ├── uploadDC-alt.php ├── uploadDC.php ├── uploader.php └── vmu_links.php ├── gallery_item.htm ├── img ├── bar.png ├── computer.png ├── dchomesmall.png ├── dreamcast.png ├── header_.png ├── header_home.png ├── header_login.png ├── header_uploader.png ├── logo.png └── welcome.png ├── index-pc.html ├── index.html ├── page.css ├── pso.php ├── save-uploads └── delete_me ├── tbs_class.php ├── upload.js ├── upload └── delete_me ├── users └── delete_me ├── util.php ├── vmi_format.php ├── vms_icondata.php └── vmuexplorer.exe /.gitignore: -------------------------------------------------------------------------------- 1 | server 2 | Junk/ 3 | *.vms 4 | *.txt 5 | upload -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Combine.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |9 | Select File: 10 | 11 | 12 |
13 |#' . $color . '
14 |
|
36 |
37 |
|
58 |
Please enter a username and password!
"; 9 | } else { 10 | $uname = _c($_POST['uname']); 11 | $pass = _c($_POST['pass']); 12 | $ourFileName = "../users/" . $uname . "_pass.txt"; 13 | $ourFileHandle = fopen($ourFileName, 'w') or die("can't open file"); 14 | fwrite($ourFileHandle, $pass); 15 | fclose($ourFileHandle); 16 | $html_output = "14 | VMU Downloads 15 | | 16 |||
19 |
|
32 |
22 | VMU Downloads 23 | | 24 |||
27 |
|
46 |
12 |
|
36 |
5 |
|
31 |
5 |
|
13 |
5 |
|