I have a search query S1 which gives me a result X with numeric values (203, 204, 205) and I am able to populate this in a table. Now I want to bind this number with a url to create a dynamic url specific to that number. For example URL is https://cnac.ca/data/json/npas.json and from S1 query i get the result value as 203, I want to create URL : https://cnac.ca/data/json/npa203.json and want to hit this to get the response back to get the required data. For this I am using curl command, but when I try to create a dynamic URL and pass it in curl command it doesn't accept it. Please suggest.
... View more