Easy for you, but not for me
Posted: Fri Jan 23, 2009 6:48 pm
Being a 'Newie', (I'm 59 and started out in paper tape and punch cards) I thought I play around a bit and try to learn about php.
So here's my problem/question:
I have a $_POST coming in, and I want to change it from:
Make any sense?
Charlie
So here's my problem/question:
I have a $_POST coming in, and I want to change it from:
Code: Select all
for ($item = 1; ; $item++)
{
$_POST["project"].$item1;
so I end up the first time with
$_POST["project1"];
becuase that's variable beng passed to me in the $_POST: $_POST["project1"];
etc.
}
Charlie