Help for this page

Select Code to Download


  1. or download this
       my $r = Apache::Request->new(
            shift,
            POST_MAX        => 10 * 1024 * 1024,    # in bytes, so 10M
            DISABLE_UPLOADS => 0
        );
    
  2. or download this
    &MYMod::Add::Add($r);
    
  3. or download this
     my $r = Apache->request;
    
    ...
            POST_MAX        => 10 * 1024 * 1024,    # in bytes, so 10M
            DISABLE_UPLOADS => 0
        );
    
  4. or download this
    &MYMod::Add::Add($r);