Добавляет в хранилище по указанному адресу указанные данные.
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'); //Добавляем в хранилище элементы AddStorageItems('http://mysite.ru/storage.php','requests','mycrypto',Items);