now with a legend, and multiple lines work.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andrew Lenharth
2005-05-20 17:50:51 +00:00
parent 24d77506d0
commit edd47f21c5
2 changed files with 10 additions and 6 deletions

View File

@@ -61,15 +61,18 @@ else
{
my @names = $q->param('name');
my @tests = $q->param('test');
print "<P>";
print join "<BR>", @names;
print "<P>";
print join "<BR>", @tests;
print "<P>";
$str = "pwd=" . $q->param('pwd');
$count = 0;
while (@names)
foreach $n (@names)
{
$n = pop @names;
while (@tests)
foreach $t (@tests)
{
$t = pop @tests;
$str .= "&t$count=$t&n$count=$n";
$str = "$str&t$count=$t&n$count=$n";
$count++;
}
}