Often people try to do that ...  but I also know that, array variables were
invented exactly for doing this kind of jobs.

Try to implement Arrays more often..
www.php.net/array

Cheers,
Maxim Maletsky

-----Original Message-----
From: Brandon Orther [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 14, 2001 6:07 AM
To: PHP User Group
Subject: [PHP] Using a variable in a variable


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