Re: question about uninitialized variable

2003-03-09 Thread drieux
On Friday, Mar 7, 2003, at 10:42 US/Pacific, Tony Bandy wrote: [..] Just a beginning test page where the end-user submits a name and gets a page back with that name in it. The page works,however, the warning I keep getting is: "Use of uninitialized value in concatenation (.) or string..." that err

Re: question about uninitialized variable

2003-03-07 Thread Wiggins d'Anconia
Hughes, Andrew wrote: As a relative newbie myself, it appears that you have in essence applied a variable to a variable. I typically use the format my $name=param("name"); when I have a form that has a field called name. This form field value (andrew for example) would be stored in param("name

RE: question about uninitialized variable

2003-03-07 Thread Hughes, Andrew
As a relative newbie myself, it appears that you have in essence applied a variable to a variable. I typically use the format my $name=param("name"); when I have a form that has a field called name. This form field value (andrew for example) would be stored in param("name") which is then stored