Help for this page

Select Code to Download


  1. or download this
    list_items.value = list_items
                       .map(function (v) { return encodeURIComponent(v) })
                       .join(',');
    
  2. or download this
    use URI::Escape qw( uri_unescape );
    
    my @list_items = map { uri_unescape($_) }
                     split(/,/, $cgi->param('list_items'));