I have an array like this.
Array
(
[0] => Array
(
[email] => abc@gmail.com
[timestamp] => 2013-05-03 09:20:01
)
[1] => Array
(
[email] => def@gmail.com
[timestamp] => 2013-05-03 09:20:23
)
[2] => Array
(
[email] => ghi@gmail.com
[timestamp] => 2013-05-03 09:20:43
)
)
I want this to be as simple as like this.
Array
(
[0] => abc@gmai1.com
[1] => def@gmail.com
[2] => ghi@gmail.com
)
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 !!! :(