This is my code:
for($i=0; $i < count($badLinkHolder); $i++)
{
if($badLinkHolder[$i][0] != "")
{
echo "<tr><td>{$i}</td><td>{$badLinkHolder[$i][0]}</td><td>{$badLinkHolder[$i][1]}</td></tr>";
}
}
Now, $badLinkHolder has around 45 entries which I can confirm by using print_r(). For some reason, this loop is only going around 9 times and I can't retrieve all of my data from the array.
Any help on this? I'm completely baffled.