|
Posted by Oli Filth on 12/05/05 03:19
usenet@isotopeREEMOOVEmedia.com said the following on 05/12/2005 00:00:
>
> My script receives values for several values :
> _POST["c1"] = "a"
> _POST["c2"] = "b"
> _POST["c3"] = "c"
> _POST["c4"] = "d"
>
> The number of vars posted changes however, so I need to access the $_POST
> variables using a loop. I figured I could accomplish using one of these
> assignments, but apparently I'm wrong :
>
<...SNIP CODE...>
>
> Clearly, I'm trying almost anything at this point . . . but I must be missing
> something obvious, and I can't figure out the narrow Google search to find the
> answer. Can anyone suggest the solution ?
Try:
$c[$i] = $_POST["c" . $i];
Note how on the left-hand side, I'm using an array. This is nothing to
do with the problem you're having, but it's generally easier (not to
mention programatically cleaner) to use an indexable array in PHP rather
than concatenating strings...
--
Oli
[Back to original message]
|