$_POST

Typekeyword
DictionaryLCS
LibraryLiveCode Script
Syntax
$_POST
Summary

$_POST is an array variable, formed from reading stdin and translating the url-form-encoded or multi-part-encoded data.

Introduced4.6.3
OSmac, windows, linux
Platformsserver
Example
put $_POST into tPOSTArray
put $_POST["name"] into tName
Values
NameTypeDescription
The result

If the data is not url-form-encoded or multi-part-encoded then the result is empty.

RelatedKeyword: $_POST_BINARY, $_POST_RAW, $_SERVER, $_GET_BINARY, $_GET_RAW, $_GET
Property: outputTextEncoding
Description

Use the $_POST keyword to access posted form data. It is an array formed from reading stdin and translating the data.

$_POST is only available when running in CGI mode (Server).

The data is converted to the native character set from the character set defined in the outputTextEncoding. The $_POST keyword supports multi dimensional arrays.