Коньков Евгений <kes-kes at yandex.ru> writes:
> How to send multiple parametrs with perl like next:
>> 1) $RAD_REPLY{'mpd-table-static'}= "14=192.168.1.7 2";
>> 2) $RAD_REPLY{'mpd-table-static'}= "15=192.168.1.7 3";
$RAD_REPLY{'mpd-table-static'} = ["14=192.168.1.7 2", "15=192.168.1.7 3"];
Bjørn