This is a very basic quesion i know but im facing difficulties. I have an array like this:
Array
(
[0] => Array
(
[id] => 10772
)
[1] => Array
(
[id] => 10775
)
)
or you can say:
array(12) {
[0]=> array(1) { ["id"]=> int(10772) } [1]=> array(1) { ["id"]=> int(10775) }
but i need only the value in a string format like:
"10772,10775" or array("10772", "10775")
how can i achieve that.