When i try to print specific items in the array "entry_history" , i get an error. For example when i am printing ID it gives me the following error:
"Warning: Illegal string offset 'id'"
<?PHP
foreach($data['entry_history'] as $key=>$item)
{
?>
<td><?PHP echo $item['id']; ?></td>
<?PHP
}
?>