I am using an array to return the contents of a file. The file root is
located on the db and the file content is correctly rendered using the
following code:
echo "\n\t<td ALIGN=LEFT bgcolor = \"silver\">" .
$arrText= file($row["description"]);
for ($i=0; $i<count($arrText); $i++)
{
echo("<P ALIGN=LEFT><PRE><b>$arrText[$i]</b></PRE></P>");
}
Everything works fine except that the paragraph is led off by the pesky
"Array" tag, such as:
Array
File contents here..
Is there a way to suppress or hide the Array tag? I realize that there
probably is an excruciatingly simple solution, but I have not found it
yet.
Thanks.
Michael Conway
[EMAIL PROTECTED]
(703) 968-8875