I want to take the conversation_id values from the following arrays and store them into another array so I can use it in a WHERE clause. Is that possible?
`Array ( [conversation] => Array (
[0] => Array (
[conversation_id] => 4
[conversation_subject] => This is just a test
[conversation_last_reply] => 2016-01-03 20:12:14
[conversation_unread] => 1 )
[1] => Array (
[conversation_id] => 3
[conversation_subject] => Interview scheduled for monday [conversation_last_reply] => 2016-01-03 18:51:33
[conversation_unread] => 1 )
[2] => Array (
[conversation_id] => 2
[conversation_subject] => Google hangout
[conversation_last_reply] => 2016 [conversation_unread] => 1 )
[3] => Array (
[conversation_id] => 1
[conversation_subject] => testing
[conversation_last_reply] => 2016
[conversation_unread] => 1 ) ) )`
My frame work is codeignitor