Ok so in Python, I could have a URL like
"(www.google.com/%s)" % cat
and the output would be
"(www.google.com/cat)"
How do I do this in PHP? I don't want to echo the output out, I want to scrape a given URL based on user input (i.e., they put in a stock ticker and it will go to the page of that stock ticker)