in reply to :-delimited lists in CGI parameters

Is there a better way to pass a list within cgi arguments?

Don't forget that you can have a paramater repeated multiple times. For example, if you have the query string color=red;color=blue;color=green, you can read back all colors with a simple param call:

my @colors = param('color');

Cheers,
Ovid

New address of my CGI Course.