Here is the Array im working with
[container:protected] => Array
(
[campaigns] => Array
(
[0] => Array
(
[id] => 1
[name] => Merry Christmas
[type] => classic
[status] => draft
[sender] => stdClass Object
(
[name] => Prebic
[id] => 1
[email] => prebic@balworld.in
))
[count] => 1
)
)
and Printing the Same in HTML Table using
<?php foreach($result['campaigns'] as $bw_campaigns): ?>
<tr>
<td><?php echo $bw_campaigns['name'] ?></td>
<td><?php echo $bw_campaigns['type'] ?></td>
<tr>
<?php endforeach; ?>
How can i print the value inside [sender] array ?