blob: c79cce97b18a36839b18ba547fb65fdb16177d91 [file] [log] [blame]
<?php
$first = True;
foreach ($_FILES as $file) {
if (!$first)
echo ",";
echo $file['name'];
$first = False;
}
?>