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


History

VersionStatusNotes
10.0NewNew in this version.