emulatorjs-GameLibrary/fnc.php
Ramaerel 1cab90c12f
New update.
Complete overhaul of the site, have fun.
2023-02-28 03:45:17 -08:00

17 lines
506 B
PHP

<?php
function buildRomList($console) {
//Read all files from the system ROM directory
$dir = 'users/'.$_COOKIE["user"].'/roms/'.$console.'/';
$files = scandir($dir);
foreach($files as $file) {
if (!in_array($file, array('.', '..'))) {
$file_url = 'play.php?system='.$console.'&rom=' . urlencode($file);
echo('<a class="rounded-square" href="'.$file_url.'">'.$file.'</a>');
}
}
}
?>