Sign in
webkit
/
WebKit
/
6756d1c4625eeb8d03076cb127515d00fa7c2e16
/
.
/
LayoutTests
/
http
/
tests
/
xmlhttprequest
/
resources
/
multipart-post-echo-filenames.php
blob: c79cce97b18a36839b18ba547fb65fdb16177d91 [
file
] [
log
] [
blame
]
<?
php
$first
=
True
;
foreach
(
$_FILES
as
$file
)
{
if
(!
$first
)
echo
","
;
echo $file
[
'name'
];
$first
=
False
;
}
?>