i m getting the array as below
$teachers=array(array('post_id' => "81",'video_id' => array("81","73")), array('post_id' => "81",'video_id' => array("81","73")));
if all the key-value are same i would like to display only one key-value ( as in above example) as below :
i would like to display
{ post_id -> array([0]-> 81 [1]-> 73) }
And if its different as in the below example it should display both the arrays..
{ $teachers=array(array('post_id' => "81",'video_id' => array("81","73")),
array('post_id' => "81",'video_id' => array("81", "59")));}
i would like to display
{post_id -> array([0]-> 81 [1]-> 73 [2] -> 59) }