JSFiddle - React, Tailwind, and code Playground

JavaScript

<?php
$dir  = '/uploads';
$skip = array('.', '..');
$files = scandir($dir);
foreach ($files as $file):
    echo $file .'<br>';
endforeach;
?>