in reply to A newbie's first try at conditionals
if ($Age > 0) { if ($Age < 13) { # ... } elsif ($Age < 18) { # ... } elsif ($Age < 30) { # ... } elsif ($Age < 40) { # ... } elsif ($Age < 60) { # ... } else { # ... } } [download]
--Jim