Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.