>>>>> "TB" == Thomas Bätzler <t.baetz...@bringe.com> 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  ------  u...@stemsystems.com  --------  http://www.sysarch.com --
-----  Perl Code Review , Architecture, Development, Training, Support ------
---------  Gourmet Hot Cocoa Mix  ----  http://bestfriendscocoa.com ---------

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to