Ravi Malghan wrote:
> Hi:
Hello,
> I have a variable called $agent_id and want to create a string with the
> value of $agent_id followed by "-str". The following does not seem to work.
> The following example I want to create a variable called $35-str.
Numerical variable names are reserved for
On Wed, Nov 29, 2006 at 01:37:29PM -0800, Ravi Malghan wrote:
> Hi: I have a variable called $agent_id and want to create a string with the
> value of $agent_id followed by "-str". The following does not seem to work.
> The following example I want to create a variable called $35-str.
>
> $agent
On 11/29/06, Ravi Malghan <[EMAIL PROTECTED]> wrote:
Hi: I have a variable called $agent_id and want to create a string with
the value of $agent_id followed by "-str". The following does not seem to
work.
The following example I want to create a variable called $35-str.
$agent_id = 25;
$agent_i
Hi: I have a variable called $agent_id and want to create a string with the
value of $agent_id followed by "-str". The following does not seem to work.
The following example I want to create a variable called $35-str.
$agent_id = 25;
$agent_id."-str" = "This is test\n";
I get the following erro