in reply to Param and Scalars
As to your specific problem, remember that strings with single quotes do NOT get interpolated, that is, your $temp_name variable will not be expanded, and perl will treat the string as "$temp_name". Either you want to use no quotes, which will include the value of the variable directly, or use double quotes, which will expand any variables it can in addition to other text that you have. This is probable why most of your code isn't working.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Param and Scalars
by Laila (Initiate) on Mar 28, 2001 at 08:19 UTC | |
by kal (Hermit) on Mar 28, 2001 at 15:52 UTC |