Dear All,
I have created a multi dimensional array and stored elements in that through while loop like
$human = array();
and at every iteration the while loop will add elements like
$human["IPI"]["Description"][] = $row;
$human["IPI"]["link"][]= $link;
but when i wanted to print this array contents in a table format i wrote it like this inside the table environment:
for ($i=0;$i<=$j;$i++)
{
echo '<tr>';
echo "<td>Chromosome</td><td>$human[IPI][Description][$i] ($human[IPI][link][$i])</td><td>$mouse[Chromosome]</td>";
echo '</tr>';
}
but it displays like Array[Description][0] (Array[link][0]) in the output table.
I would be thankful if anyone could help me with this issue.
Thanks in advance.
cheers,
Aravind