in reply to HTTP::Request -Variable values not translating in URL

Single quotes prevent variable interpolation. Use double quotes:
$url_to_get = "http://tennislink.usta.com/Tournaments/Schedule/SearchR +esults.aspx?Action=2&Month=$month&Year=$year&Sanctioned=0&SearchRadiu +s=-1&EntryLevel=False&Intermediate=False&Advanced=False";

Replies are listed 'Best First'.
Re^2: HTTP::Request -Variable values not translating in URL
by Tonyd5915 (Initiate) on Dec 12, 2013 at 19:22 UTC
    I have tried double quotes - it didn't help the cookie problem.
      After the initial URL, I am trying to get the second URL which uses the information in the cookie to process the request: This is the second URL:
      $url_to_get2 = "http://tennislink.usta.com/Tournaments/Schedule/prints +earchresults.aspx?print_all_one=1";