Hopefully I titled this somewhat correctly...?
OK... I don't get this and it's kinda pissin me off!
Shouldn't this:
be the same as writing it out like this:
??????????
It won't work for me right now, and I need a lot more than 5 of these, and I don't really want to use so much code if there is something easier. (I'm just using this as an example of what I need to do)
Thanks in advance!
OK... I don't get this and it's kinda pissin me off!
Shouldn't this:
| Code: |
|
for ($i=1,$i<=5,$i++) $q['$i'] = $_POST['$i']; |
be the same as writing it out like this:
| Code: |
|
$q1 = $_POST['1']; $q2 = $_POST['2']; $q3 = $_POST['3']; $q4 = $_POST['4']; $q5 = $_POST['5']; |
??????????
It won't work for me right now, and I need a lot more than 5 of these, and I don't really want to use so much code if there is something easier. (I'm just using this as an example of what I need to do)
Thanks in advance!
