encodehttppostdata(
DICTIONARY
)
The encodehttppostdata( function converts a dictionary into HTTP post data.
Parameters
This function has one parameter:
dictionary – Dictionary of keys and values to be converted into http post data.
Description
This function converts a dictionary of keys and values into HTTP post data. Here is a typical example.
encodehttppostdata(initializedictionary("color","red","size","large")) ☞ color=red&size=large
You general don’t need to use this function because this feature is already embedded in the posturl( function.
See Also
- info("httpheaders") -- returns a dictionary with information about a just completed HTTP download.
- info("urltaskinfo") -- returns information about a just completed HTTP download.
- ipaddress -- returns the current IP address of the computer, or "" if not connected.
- loadurl -- loads a resource from the internet.
- loadurl( -- loads a resource from the internet.
- posturl -- loads a resource from the internet, with form data.
- posturl( -- loads a resource from the internet, with form data.
- url( -- synchronously loads a resource from the internet.
- urltask( -- asynchronously loads a resource from the internet.
- urltaskcancel -- aborts a download initiated with the urltask( function.
- urltaskstatus -- enables connection error checking in urltask( completion code.
- zipinfo -- queries the web to obtain information about a zip code.
- zipinfoplus -- queries the web to obtain information about a zip code.
History
10.0 | New | New in this version. |