I also get a bit 'circular' when working with this stuff, so is this
what your looking for?

#!/perl/bin/perl -w

use CGI qw/:all/;
#use strict;
$|++;

print header, start_html('test');
my $fname='danny';
$$fname='test';
my $lname='mallory';
my $tempname=$$fname . $lname;
$$tempname='hello';
print ul(
         li($lname),
         li($$fname),
         li($$tempname),
         li($tempname)
         );
print end_html;

Notice the commented out 'strict' modules here -> it won't do it when using 
strict refs.

At 19:57 15-10-01, you wrote:

>I need to create a scalar that is the word lname combined with
>what is found as interpretted $fname ($$fname).
>ie; $lnamedanny = mallory.




____________________________________________________

</MELVYN>

void wakeup()
{
         for(long int cuppajava;drink();cuppajava++);
}

--------------------------------------------------------------------------------
For unsubscription of this list send an email to [EMAIL PROTECTED] with email
data containing unsubscribe emailadd sambar

Reply via email to