I have a problem go on a two dimensional array. The code I wrote is as follows:
- Code: Select all
for ($row = 2; $row < sizeof($data); $row++)
{
for($col = 0; $col < sizeof($data[$row]); $col++)
{
echo $data[$row][$col];
}
echo "<br>";
}
And appear blanks, but if I change to:
- Code: Select all
echo $data;
This Array writes the number of times the existing $ data. Someone can help me to show me the information in this array?


