Hi,
Basically this is my code:
$band = array($memberinfo['member1user'],
$memberinfo['member2user'],
$memberinfo['member3user'],
$memberinfo['member4user'],
$memberinfo['member5user'],
$memberinfo['member6user'],
$memberinfo['member7user'],
$memberinfo['member8user'],
$memberinfo['member9user']);
foreach ($band as $value) {
$value = $mb['id'];
}
OK, and basically the $memberinfo['']; stuff is getting it from the db and that works....
So then when it goes to the foreach, I want it to get the id (from a different db) and change the band array to the new ID's.
On php.net, it said this would work :S ... Ignoring any DB stuff (that all works..)
Have you got any ideas?!
Thanks,
Max