>>>>> "TB" == Thomas Bätzler <[email protected]> writes:
TB> That'll raise the next problem, though: _ is a valid character for
TB> a variable name, so the Perl interpreter will try to access the
TB> variable $Vorname_ which probably isn't what you wanted. In such a
TB> case, use curly braces to delimit the variable name, like this:
TB> print STATISTIKDATA
CGI->a({href=>"http://www.b-net-c.de/adressbuch/${Vorname}_${Name}_$id.html'},'Link
zum Profil');
you closed the string with ' instead of ". also this code cries out for
formatting as you can't see the keys vs values vs code.
print STATISTIKDATA CGI->a( {
href =>
"http://www.b-net-c.de/adressbuch/${Vorname}_${Name}_$id.html"
},
'Link zum Profil'
);
uri
--
Uri Guttman ------ [email protected] -------- http://www.sysarch.com --
----- Perl Code Review , Architecture, Development, Training, Support ------
--------- Gourmet Hot Cocoa Mix ---- http://bestfriendscocoa.com ---------
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/