Hi,

This is DUMB, but I cannot remember how?

I have two hashes and I want to pass them:

  $data{ week } = %week_day_date;
  $data{ eng  } = %eng_info;

  &build_table_date( 5, %data );

then:

sub build_table_date {

  my( $rows, %data ) = @_;

  foreach $row ( 1..$rows ) {
    print"rows $row $rows *$data{ week }{ $rows }<br>";
  }

But I get no data from  $data{ week }{ $rows }!

I know this is simple, but what am I doing wrong?

Thanks for your help,

Jerry



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to