$ENV{'VAR'} = '/home/testuser/path';
===== Arrays =====
==== Definition ====
@types = ("Type1","Type2","Type3");
===== Vergleich von Strings =====
Nicht "==", sondern "eq" bzw. "neq"
if ($string1 eq $string2) {
print "Equal\n";
}
===== MySQL und UTF8 =====
* [[http://rolfrost.de/dbiutf8.html|Perl DBI und mysql_enable_utf8]]