Hello All,
I'm very new to the LWP module and I've searched for a while for an example or
documentation about how to do what I'm trying.
What I need to be able to do is :
1)
script one ::
send request to script two with something like ?grab=variable
2)
script two ::
sees that they want the value of 'variable' and sends
it back to script one with something like ?variable=monkey
3)
script one ::
parses that reply from script two and uses the data
$variable = $input_from_script_two{'variable'};
print "You are a $variable";
Any help would be very much appreciated as I am familiar with perl and DBI and CGI but
completely clueless with LWP.
Thanks
Dan