in reply to Re: While loop
in thread While loop

Shouldn't the
while ($input =~ /^yes$/ or $input =~ /^no$/);
actually be
while ($input !~ /^yes$/ or $input !~ /^no$/);
?
Who says that programmers can't work in the Marketing Department?
Or is that who says that Marketing people can't program?