Re: Passing values to another script using CGI

2005-03-14 Thread Fuzzyman
Hello Mike, Mike Wimpe wrote: > Without creating a form, how do i pass a value to another script? > > I would like to pass: > > group = "Oranges" > > to another script or at least just 'group' and initialize it in the > first script. > Do you want to pass it *from* a CGI script or *two* a CGI scr

Passing values to another script using CGI

2005-03-12 Thread Mike Wimpe
Without creating a form, how do i pass a value to another script? I would like to pass: group = "Oranges" to another script or at least just 'group' and initialize it in the first script. script1: ''' group = "Oranges" ''' script2: print ''' Oh you like '''+group+'''.''' thanks, Mike --