Very confused - PHP Script -
Posted: Fri Mar 12, 2004 10:06 pm
After some research and with no knowledge of PHP this is a descrition of my problem. I am trying to log on to a API to down load product data for a tab delimited file. The API is asking for login and password and warehouse ID (which I have). How do I feed the information to the API. I have no knowledge of PHP. I was told that it is a very simple script and should easy to write. Any help would be great!!!
This is a sample of the document that I am gettting the information from.
API Responses are a formatted collection of variables and values. By default the response format is URL encoded values:
code=2&text=Parameter+Missing%3A+command
All web-enabled scripting languages provide url-decoding functions to assist in decoding the values. If the calling system is using the php scripting language to access the API, setting the output=php parameter in the request will cause the response to be formatted as a serialized associative array.
brian
This is a sample of the document that I am gettting the information from.
API Responses are a formatted collection of variables and values. By default the response format is URL encoded values:
code=2&text=Parameter+Missing%3A+command
All web-enabled scripting languages provide url-decoding functions to assist in decoding the values. If the calling system is using the php scripting language to access the API, setting the output=php parameter in the request will cause the response to be formatted as a serialized associative array.
brian