Hi I have a script that generates a HTML page with input fields. The amount of fields depends of an ascii database. This means that I don't know how many fields I have to work with. I tried the following code but I don't get any data in $title and $path. I get the correct amount of entrys but it looks like: 0|| 1|| 2|| And so on.
CODE: ---- $E=0; open (EDITERA, ">$DATABASE") || die "Can't open $DATABASE!\n"; foreach $h (@num) { $title = param('linkname$E'); $path = param('path$E'); print EDITERA "$E|$title|$path\n"; $E++; } close (EDITERA); ---- Is there some easy way to get this to work? regards Håkan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]