Why not just use an array?

$testtext[1] = "value1" ;
$testtext[2] = "value2" ;
etc..

-- 
Sam Masiello
Systems Analyst
Chek.Com
(716) 853-1362 x289
[EMAIL PROTECTED]


On 2001.02.13 16:06:54 -0500 Brandon Orther wrote:
> Hello,
> 
> Is there a way to use a variable in the middle of a variable?
> 
> ## START EXAMPLE ##
> 
> <?
> 
> $test1text = "";
> $test2text = "";
> $test3text = "";
> 
> $count = 3;
> 
> $i = 0;
> do{
> 
> $test$itext = "$i";
> 
> }while($i < $count);
> 
> ?>
> 
> ## END EXAMPLE ##
> 
> 
> $test($i)text = "$i";
>       ^^----------------------I want this variable to get bigger while
> the
> loop is going but I can't figure out how to make the $test#text variable
> to
> read it correctly.
> 
> I hope someone can understand what I am saying.
> 
> Thank you,
> 
> --------------------------------------------
> Brandon Orther
> WebIntellects Design/Development Manager
> [EMAIL PROTECTED]
> 800-994-6364
> www.webintellects.com
> --------------------------------------------
> 
> 
> -- 
> 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]
> 


-- 
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]

Reply via email to