#my second_page.pl: #!/usr/local/bin/perl5_8 use strict; use warnings; use nc_pswd; use nc_library; use vars qw/ $titlebar $rpt_no $rpt_lbl $rpt_name $rpt_asofdt $project $proj_re +f $attr_dept $attr_descr $attr_award $attr_prog $attr_projpd $attr_f +yr $attr_budgpd $attr_fund $attr_rate $attr_subclass $attr_status $attr_spec $attr_equip $attr_resp $attr_pi $rpt_type $from_act_tbl $from_bud_tbl /; use HTML::Template; use DBI; use CGI ':standard'; use CGI::Carp qw(fatalsToBrowser); #remove for PRD my $CGI = CGI->new; #clear buffers and set up web page (required) $|=1; print $CGI->header; &call_vars; #and do other stuff.... # --------------------------------------------------------------- # #my nc_library.pm package nc_library; use strict; use warnings; use Exporter (); our @ISA = 'Exporter'; our ( $titlebar, $rpt_no, $rpt_lbl, $rpt_name, $rpt_asofdt, $project, $proj_ref, $attr_dept, $attr_descr, $attr_award, $attr_prog, $attr_projpd, $attr_fyr, $attr_budgpd, $attr_fund, $attr_rate, $attr_subclass, $attr_status, $attr_spec, $attr_equip, $attr_resp, $attr_pi, $rpt_type, $from_act_tbl, $from_bud_tbl ); our @EXPORT = qw/ call_vars commify dberror $CGI $spec_vars $titlebar $rpt_no $rpt_lbl $rpt_name $rpt_asofdt $project $proj_ref $attr_dept $attr_descr $attr_award $attr_prog $attr_projpd $attr_fyr $attr_budgpd $attr_fund $attr_rate $attr_subclass $attr_status $attr_spec $attr_equip $attr_resp $attr_pi $rpt_type $from_act_tbl $from_bud_tbl /; sub call_vars { use CGI ':standard'; use CGI::Carp qw(fatalsToBrowser); #remove for PRD my $CGI = CGI->new; my $spec_vars = param('spec_vars'); ( $titlebar, $rpt_no, $rpt_lbl, $rpt_name, $rpt_asofdt, $project, $proj_ref, $attr_dept, $attr_descr, $attr_award, $attr_prog, $attr_projpd, $attr_fyr, $attr_budgpd, $attr_fund, $attr_rate, $attr_subclass, $attr_status, $attr_spec, $attr_equip, $attr_resp, $attr_pi, $rpt_type, $from_act_tbl, $from_bud_tbl) = split /~/, $spec_vars; return; } sub commify #Formats numbers (puts in commas) { local $_ = sprintf "%.2f", shift @_; 1 while $_ =~ s/^(-?\d+)(\d\d\d)/$1,$2/; return $_; } 1;
Lori
In reply to Re: Re: Re: Re: Re-calling in a list of variables into different .pl's
by Lori713
in thread Re-calling in a list of variables into different .pl's
by Lori713
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |