In a message dated 1/17/2003 6:04:41 PM Eastern Standard Time, [EMAIL PROTECTED] writes:
> Is it possible to name a variable as the numeric value of a scalar?
Well, all scalar variables you create must start with a letter. But, if
you're talking about something like this:
$var = "hello";
${$var} = 1;
print $hello;
You can do it.
