Posted by strawberry on 04/23/07 11:38
On Apr 23, 10:46 am, "Boris Savc" <boris.s...@siol.net> wrote:
> Sorry for confuzing subject, but that's the thing I'm trying to achieve. For
> example:
>
> $a = "Hello";
> $b = 1;
>
> I want to change the name of $a to $a1 where 1 is value of variable $b!
>
> Thanks for all the help,
> Boris
This has nothing to do with sql, but anyway:
<?php
$a = "hello";
$b = "world";
$a.= $b;
echo $a;
?>
[Back to original message]
|