Table plus | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
|
Description
Excerpt | ||
---|---|---|
| ||
Executes an HTTP POST for the given URL using the specified HttpRequest object. |
...
Code Block |
---|
//Define structs struct property { string property; string value; } struct properties { property [] properties; } struct returnData { string status; string contactID; } |
...
Code Block |
---|
//Create array/struct property [] propertyArray; property p; properties newContact; //Add data to array/struct p.property = "firstname"; p.value = "Merimas"; propertyArray += p; p.property = "lastName"; p.value = "Fairbairn"; propertyArray += p; p.property = "email"; p.value = "merimas_fairbairn@aol.com"; propertyArray += p; p.property = "company"; p.value = "Goodchild"; propertyArray += p; newContact.properties += propertyArray; |
...