Jump to content

variables within variables?


galvin

Recommended Posts

Ultimately I will be echoing variables like $mycode1 and $mycode2 and $mycode3, etc, etc.

 

But before I get there, I am creating those variables inside for loops (which are using $i to count), so what is the proper way to write out that "variable within a variable" while I'm creating them?

 

For example, this clearly isn't right (i tried it and it's not working)...

 

$mycode$i = "stuff";

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/241737-variables-within-variables/
Share on other sites

zander1983 has it right, use arrays. They will be much easier to understand and perform better. If you want to just know how to get your code to work:

 

$i=0;
$temp = 'mycode' . $i;
$$temp = "stuff";
echo $mycode0;

 

Should do it, this technique is called, variables variable.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.