If you want to store something in an array then you would do
$myarray[0] = "50 bytes of stuff";
$myarray[1] = "50 more bytes";
etc..
Then you get at it like you wanted to with
$loop=1;
$myarray[$loop];
if you just did
$myarray = "50 bytes of stuff";
then $myarray[$loop]; (same as $myarray($loop) for now)
would get you the second character which would be a 0 rather than the sentence "50 more bytes"
Hope that explains it a bit more
Tim Frank