Help for this page

Select Code to Download


  1. or download this
    print <<'SUBMITFORM';
    <form method="post" action="?" enctype="multipart/form-data">
    ...
    
    SUBMITFORM
    
  2. or download this
    C:\>perl -Mstrict -MCGI -we"print hr"
    Unquoted string "hr" may clash with future reserved word at -e line 1.
    ...
    C:\>perl -Mstrict -MCGI=hr -we"print hr"
    <hr />
    C:\>