libURLFormData

libURLFormData formats data in the standard format suitable for sending to form processing CGIs and other processes on a web server.

# Metadata

Platforms: desktop, server OS: mac, windows, linux, web Introduced: 2.5 Security: network

# Syntax

libURLFormData(key1, value1 [, key2, value2 ...])

# Params

- key1 : - value1 : - key2 : - value2 :

# Examples

put "John" into tName put "Hello" into tMessage get libURLFormData("name", tName,"message", tMessage) post it to url "http://www.someserver.com/cgi-bin/form.pl" -- In this case, the data posted to the url will look like this: name=John&message=Hello

# Description

The function accepts variable numbers of parameters and treats them as key-value pairs. The first parameter is the name of the first form part, the second the value of the first part, the third is the name of the second part, and so on.

>*Note:* The Content-Type header is set to > "Content-Type: application/x-www-form-urlencoded" by default when > using post. There is no need to set the httpHeaders unless you have > previously set the Content-Type header to something else.

>*Important:* The libURLFormData function is part of the > Internet library. To ensure that the function works in a > standalone application, you must include this > LiveCode custom library when you create your > standalone application. In the Inclusions pane of the > Standalone Application Settings window, make sure the "Internet" > script library is selected.

# Tags

# See