Help for this page

Select Code to Download


  1. or download this
    # three text inputs, each with a size 30 tag
    form('input', 'text', 'user_name:Name', '30', 'user_email:Email|format
    + user@domain.com', '30', 'user_title:Topic', '30');
    
    ...
    # input submit
    form('input', 'submit', 'send');
    
  2. or download this
    sub split {
    my %key;
    if ($_[0] =~ /^(.+?):(.+?)$/) {
    ...
    }
    return %key;
    }