Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

(OT) Editor-neutral code formatting

by Ovid (Cardinal)
on Feb 07, 2002 at 01:01 UTC ( [id://143767]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub ugly_formatting {
        my %conn_data  = @_;
    ...
                                  LongReadLen => 65_634 } ) or die DBI->er
    +rstr;
        $dbh;
    }
    
  2. or download this
    sub _connect 
    {
    ...
        ) or die DBI->errstr;
        $dbh;
    }
    
  3. or download this
    if ( exists $database->{ $table }{ _unique } ) {
        my @unique_fields = @{ $database->{ $table }{ _unique } };
    ...
            }
        } # next $field
    }
    
  4. or download this
    if ( exists $database->{ $table }{ _unique } ) 
    {
    ...
            }
        } # next $field
    }
    
  5. or download this
    my %page_control = ( Add    => { EmploymentListing => { page     => 'e
    +m-main-add-employment.tmpl',
                                                     function => \&add_emp
    +loyment }
    ...
                                   },
                         Delete => { EmploymentListing => { page     => 'e
    +m-main-update-del-employment.tmpl',
                                                      function => \&update
    +_delete_employment }
    
  6. or download this
    my %page_control = ( Add    => { EmploymentListing => { page     => 'e
    +m-main-add-employment.tmpl',
                                                                          
    +                           function => \&add_employment }
    ...
                                                               },
                                             Delete => { EmploymentListing
    + => { page     => 'em-main-update-del-employment.tmpl',
    
  7. or download this
    my %page_control = ( 
        Add => 
    ...
            }
        }
    };
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (6)
As of 2024-04-23 20:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found