Adds specified data to the storage on the specified address.
procedure AddStorageItems(aStorageURL: string; aStorageKey: string; aCryptoKey: string; aItems: array of string; aStoragePass: string = '');
var Items:array of string; Items.Add('first item'); Items.Add('second item'); Items.Add('third item'); //Add the elements to the storage AddStorageItems('http://mysite.ru/storage.php','requests','mycrypto',Items);