I have an array called $worker
the array consists of only strings, each of which has multiple lines.
if I do
var_dump($worker);
it displays all the information, but do
for($i=0,$size=sizeof($worker);$i<$size;++$i)
{
echo $worker[i];
}
I end up with nothing on the page.
I'm very new to php, so sorry if this is a noob question: how do I get the information in the array to print to the screen correctly?