Hi, I just discovered a typo in my recent post (see below)
> > Does
> >
> > print $params{-id};
> >
> > really print your isolate ID entered into the form?
> > If you are new to CGI.pm, perhaps you mean someting
> > like $query->params('id') ?
^
This should read $query->param('id'). And, BTW, if you
use CGI qw(:standard);
it would be just
param('id')
(but i cannot tell you how the latter interpolates into your sql
string, because I always use CGI.pm in object oriented syntax).
Hope I did not cause additional confusion, sorry
Bodo