line 47 in my controller I have :
debug($this->data['Selection']['member_id']);
line 48 in my controller I have :
debug($this->data['Selection']['member_id'][$value]);
Here's the output......not sure what it all means. From my understanding it looks like $this->data['Selection']['member_id'] is an array?? Is that right? I am surprised if it is as it is posting back an array??
app\controllers\selections_controller.php (line 47)
Array
(
[0] => 3
[1] => 4
[2] => 5
)
app\controllers\selections_controller.php (line 48)
3
Notice (8): Uninitialized string offset: 1 [APP\controllers\selections_controller.php, line 48]
Notice (8): Uninitialized string offset: 1 [APP\controllers\selections_controller.php, line 51]
Notice (8): Uninitialized string offset: 2 [APP\controllers\selections_controller.php, line 48]
Notice (8): Uninitialized string offset: 2 [APP\controllers\selections_controller.php, line 51]
tnbrooks - on 21/2/10
line 47 in my controller I have :
debug($this->data['Selection']['member_id']);
line 48 in my controller I have :
debug($this->data['Selection']['member_id'][$value]);
Here's the output......not sure what it all means. From my understanding it looks like $this->data['Selection']['member_id'] is an array?? Is that right? I am surprised if it is as it is posting back an array??
app\controllers\selections_controller.php (line 47)
Array
(
[0] => 3
[1] => 4
[2] => 5
)
app\controllers\selections_controller.php (line 48)
3
app\controllers\selections_controller.php (line 47)
3
Notice (8): Uninitialized string offset: 1 [APP\controllers\selections_controller.php, line 48]
app\controllers\selections_controller.php (line 48)
Notice (8): Uninitialized string offset: 1 [APP\controllers\selections_controller.php, line 51]
app\controllers\selections_controller.php (line 47)
3
Notice (8): Uninitialized string offset: 2 [APP\controllers\selections_controller.php, line 48]
app\controllers\selections_controller.php (line 48)
Notice (8): Uninitialized string offset: 2 [APP\controllers\selections_controller.php, line 51]
tnbrooks - on 21/2/10