Tema: variable hash
Pregunta: Como obtener los pares en un orden
Respuesta: Se hace en conjunto con la funciones sort y keys...
Código:
print "Content-type: text/html\n\n";
foreach $key (sort (keys %hash)){
print "La clave $key tiene el valor $hash{$key} <br>\n";
}