in reply to Re^2: Printing out of order...
in thread Printing out of order...
Perhaps only the %StudentLogins or %InstructorLogins hashes have data with true values. Something like this will confirm it:
use Data::Dumper; print Data::Dumper->Dump([\%RegStudentNew, \%RegInstructorNew, \%RegStudentExisting, \%RegInstructorExisting, \%StudentLogins, \%InstructorLogins ], [qw( RegStudentNew, RegInstructorNew, RegStudentExisting, RegInstructorExisting, StudentLogins, InstructorLogins )]);
|
|---|