I have an array like this.
Array
(
[0] => Array
(
[email] => [email protected]
[timestamp] => 2013-05-03 09:20:01
)
[1] => Array
(
[email] => [email protected]
[timestamp] => 2013-05-03 09:20:23
)
[2] => Array
(
[email] => [email protected]
[timestamp] => 2013-05-03 09:20:43
)
)
I want this to be as simple as like this.
Array
(
[0] => [email protected]
[1] => [email protected]
[2] => [email protected]
)
I have tried unset function but it still doesn't work as i expected.
I am not big into array concept and hence my stupid questions !!! :(