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
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
--