Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^5: Print HTML form to file using CGI.pm save method

by Anonymous Monk
on Aug 04, 2012 at 10:36 UTC ( [id://985423]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
     sub sparaData {
    open (KOF, ">$konfil") or die "Kan inte \xF6ppna filen $konfil";
    flock (KOF, 2) or die "Kan inte l\xE5sa filen $konfil";
    ...
    $size = -s $konfil;
    return;
    }
    
  2. or download this
    sub sparaData {
        my( $konfil, $qry ) = @_;
    ...
        my $size = -s $konfil;
        return $size;
    }
    
  3. or download this
    my $qry = CGI->new;
    my $number = sparaData( "blah/blah/blah.data", $qry );
    
  4. or download this
    my $roshambo = CGI->new;
    my $size = sparaData( "blah/blah/blah.data", $roshambo );
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://985423]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (6)
As of 2024-04-25 11:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found