Lines Matching refs:encoding
1694 $target,$meta,$head,$style,$dtd,$lang,$encoding,$declare_xml,@other) =
1701 $encoding = lc($self->charset) unless defined $encoding;
1717 push @result,qq(<?xml version="1.0" encoding="$encoding"?>) if $xml_dtd && $declare_xml;
1742 my $meta_bits = qq(<meta http-equiv="Content-Type" content="text/html; charset=$encoding" />)
1743 if $XHTML && $encoding && !$declare_xml;
1937 # $enctype ->encoding to use (URL_ENCODED or MULTIPART)
1965 # $enctype ->encoding to use (URL_ENCODED or MULTIPART)
5410 The B<-encoding> argument can be used to specify the character set for
5428 encoding. In the absence of -declare_xml, the output HTML will contain
5429 a <meta> tag that specifies the encoding, allowing the HTML to pass
5974 -enctype=>$encoding);
5980 print start_form($method,$action,$encoding);
5985 action and form encoding that you specify. The defaults are:
6006 This is the older type of encoding. It is compatible with many CGI scripts and is
6008 convenience, CGI.pm stores the name of this encoding
6013 This is the newer type of encoding.
6017 your convenience, CGI.pm stores the name of this encoding type
6020 Forms that use this type of encoding are not easily interpreted
6025 created using this type of encoding.
6029 The start_form() method uses the older form of encoding by
6031 newer form of encoding by default, you can call
6189 multipart encoding scheme> for the form. You can do this either
6190 by calling B<start_form()> with an encoding type of B<&CGI::MULTIPART>,