Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a loop that creates variables using the increment/count number:

$names = 4;

for($it=0;$it<$names;$it++){ 
           $NAME{$it}       = $_REQUEST['NAME'.$it.''];
           $SURNAME{$it}    = $_REQUEST['SURNAME'.$it.''];
           $AGE{$it}        = $_REQUEST['AGE'.$it.''];
 }

My issue is that instead of getting $NAME0, $NAME1 etc, I am getting an array (so $NAME[0], $NAME[1] and so on).

How would I use the loop to get all the info in $NAME0, $NAME1, $NAME2, $SURNAME1, $SURNAME2 $SURNAME3, $AGE1, $AGE2, $AGE3?

Thanks :)

share|improve this question
4  
Why not use an array‽ It's the vastly saner method! – deceze Apr 26 '12 at 3:25
2  
Why don't you want an array? You can iterate over arrays, slice them, and do all kinds of things that you can't do with a bunch of variables with related names. – Kata Apr 26 '12 at 3:25
2  
By all means, you should do this with an array rather than a pile of global variables. – Michael Berkowski Apr 26 '12 at 3:27
Sorry for answering the question, rather than assuming what someone needs. There was absolutely no reason to vote down my answer, but hey, go for it! – Cassie Carter Apr 26 '12 at 3:30
@CassieCarter: I don't think it works: codepad.org/XUxxGxyL – Blender Apr 26 '12 at 3:32
show 2 more comments

3 Answers

You don't want variables with related names; using an array is much simpler. In this case, $NAME0 is the same as $NAME[0], except you can do a lot more things with $NAME[0] than you can with $NAME0. Stick with the array, learn to use it; don't reinvent the wheel.

share|improve this answer

Generally speaking, this would be dangerous for super-globals (e.g. $_REQUEST) without serious forethought.

However, this is an excellent use case for the underused PHP function extract().

If you were to use it in such a case, I'd strongly recommend setting the additional parameters with the EXTR_PREFIX_ALL flag.

share|improve this answer
Downvoter care to share? – Jason McCreary Apr 26 '12 at 4:23
It's most likely Elliot Bonneville down voting because we offered solutions different than his... Citing we are "giving the OP what they want." – JT Smith Apr 26 '12 at 4:38
There, a +1 to offset your unjustified downvote... :) – JT Smith Apr 26 '12 at 4:47
@JT Smith: Hey, don't be hatin'. I didn't downvote either of the other questions, just fyi. :) – Elliot Bonneville Apr 26 '12 at 13:53

I agree with the others about using an array, much better but if that's not what you want, try adding an underscore to the variables... May not be "perfect" but won't create an array:

$names = 4;

for($it=0;$it<$items;$it++){ 
       $NAME_{$it}       = $_REQUEST['NAME'.$it.''];
       $SURNAME_{$it}    = $_REQUEST['SURNAME'.$it.''];
       $AGE_{$it}        = $_REQUEST['AGE'.$it.''];
}
share|improve this answer
Yes, it's far from perfect. In fact, it's another bad example of giving the OP what they want rather than what they need. This method will generally give them lots of trouble later on as they start to write more complex code. – Elliot Bonneville Apr 26 '12 at 3:31
1  
Elliot, what you've just described is called learning. The OP has asked a question. This is not a bad example, its an option. – Cassie Carter Apr 26 '12 at 3:36
1  
@ElliotBonneville I am "giving the OP what they want" because that is what they asked for. I presume they asked for it because that's what they want. It may not be the best solution, as I agree with using it as an array, however, we tell them the best procedure while still answering their questions to fill their particular needs. A person can name variables however they wish. – JT Smith Apr 26 '12 at 3:37
That is true. However, why would you want to create an artificial learning curve for somebody? Just tell them what they actually need. I'd be grateful it somebody did that for me when I was learning. In fact, I'm still grateful if somebody does that for me. – Elliot Bonneville Apr 26 '12 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.