On Tuesday 08 January 2002 08:16 pm, Dave Morgan wrote: > I'm trying to populate select boxes(or other input types)for my HTML > pages. > An example would be a drop down list of states and/or provinces. A large > number > of these are populated from lookup tables in the dba and are relatively > static.
Okay, I suspect the problem is that whenever you get a new request the setup you did for CGI.pm gets cleared. You should store the static data in a global, and then populate the CGI widget with it on every request. - Perrin