http://qs321.pair.com?node_id=164034


in reply to Re: Re: Yet another Uninitialized value
in thread Yet another Uninitialized value

Well, this warning means that either $total_hours or $total_minutes contains undef. Since previous line has
$total_hours = $row[4] * 60;
and it doesn't cause a warning then $total_hours can be excluded from suspect list. $total_minutes gets its value from $row[5] which seems to be undefined. Are you sure that your query is correct and returns correct number of rows?

Probably fetchrow doesn't return what you expect it to return. Often to help myself debugging simular problems I use Data::Dumper to check if variables really have data I expect them to have. Try to add after line with fetchrow

use Data::Dumper; print Dumper(\@row);
to find out actual content of @row. Once bug is fixed you can remove this debug print.

--
Ilya Martynov (http://martynov.org/)