http://qs321.pair.com?node_id=922843

DaveLord has asked for the wisdom of the Perl Monks concerning the following question:

Hi, I'm trying to play with facebook using a perl script. I managed to login to facebook, and now I'm trying to search in facebook. I'm using LWP::UserAgent so I used a get-method

my $response=$browser-> get('http://www.facebook.com/search.php?q=blabla',@header);
and it works, but I want to give a variable as a keyword like
$keyword=blabla; search.php?q=$keyword;
but the script searchs for the word "$keyword" as a searching keyword is there a way to implement a variable in the get-method?