Okay, I'm having a hellish time finding the answer to this using Google. I have a feeling I'm not using the right terminology. So, I'll try to explain what I want to do.
I would like to be able to take a .csv (or tab delimited) document and convert it to URLs to post data using the GET method.
So, I've got the post URL, I need to append the data to it.
Basically, the "&field-name=" would be the header row. Example:
And I want the output to be:
Can someone please point me in the right direction?
Thanks!
I would like to be able to take a .csv (or tab delimited) document and convert it to URLs to post data using the GET method.
So, I've got the post URL, I need to append the data to it.
Basically, the "&field-name=" would be the header row. Example:
Code:
fname,lname,address,address2
bob,smith,123 main street,apt 4
And I want the output to be:
Code:
http://www.post-url.com/script.php?fname=bob&lname=smith&address=123%20main%20street&address2=apt%204
Can someone please point me in the right direction?
Thanks!