Hello.
>How do I combine the following so it is treated as one variable
>
>$i=10
>$result$i="test";
>
>I want this to be:
>
>$result10="test";
>
>$i changes so I cannot just put in 10 instead of I.
>anybody know how i can do that?
>
>TIA
>Randy
How about the below.
<?
$i=10;
${"result$i"}="test";
echo $result10;
?>
or
<?
$i=10;
${'result'.$i}="test";
echo $result10;
?>
Cheers :-)
-----------------------------------
K.Tomono
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]