index
:
apache2
debian
progress-linux
upstream
debian 11 security: apache
Progress Linux
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
debian
/
perl-framework
/
t
/
htdocs
/
php
/
arg.php
blob: 9e882675ddfa1409fb3cf4a52867d11692e8362c (
plain
)
1
2
3
4
5
<?php
for
(
$i
=
0
;
$i
<
$_SERVER
[
"argc"
];
$i
++
)
{
echo
"
$i
: "
.
$_SERVER
[
"argv"
][
$i
]
.
"
\n
"
;
}
?>