root/LayoutTests/http/tests/xmlhttprequest/resources/multipart-post-echo-filenames.php

/* [<][>][^][v][top][bottom][index][help] */
<?php
$first = True;
foreach ($_FILES as $file) {
    if (!$first)
        echo ",";
    echo $file['name'];
    $first = False;
}
?>

/* [<][>][^][v][top][bottom][index][help] */