in reply to Re: Help choosing the most efficient, dependable condition(al)
in thread Help choosing the most efficient, dependable condition(al)
FWIW, there's an issue with your example above:
For the record; it takes 2 newlines (\n\n).# your version print "Content-Type: application/xhtml+xml; charset=UTF-8\n"; } else { print "Content-Type: text/html; charset=UTF-8\n"; # MY version print "Content-Type: application/xhtml+xml; charset=UTF-8\n\n"; } else { print "Content-Type: text/html; charset=UTF-8\n\n";
--Chris
#!/usr/bin/perl -Tw use Perl::Always or die; my $perl_version = (5.12.5); print $perl_version;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Help choosing the most efficient, dependable condition(al)
by daxim (Curate) on Nov 13, 2013 at 23:44 UTC | |
by taint (Chaplain) on Nov 14, 2013 at 00:23 UTC |