#!/usr/local/bin/perl5 # Example that shows the effect of wrap_textarea and create_variables. # Let's assume we're getting three fields: name, bio, skills. use CGI::Lite; $cgi = new CGI::Lite; %form = $cgi->parse_form_data; print "Content-type: text/plain\n\n"; # The create_variables method needs a reference to a hash. We could # call this method in the following manner as well: # # $form = $cgi->parse_form_data; # $cgi->create_variables ($form); # # Because we have three fields, the create_variables creates three # variables for us: $name, $bio and $skills. $cgi->create_variables (\%form); if (ref $skills) { @all_skills = $cgi->get_multiple_values ($skills); } $nice_bio = $cgi->wrap_textarea ($bio); print <