Ok, so i am trying to read a text file and input it into a text area so it can later be edited.
<?
$textname = $myrow["name"];
$textfilename = "$textname.txt";
$fo = fopen("../sections/Our Dentists/$textfilename", "r");
$readtext = fread($fo, $filesz);
fclose ($fo);
?>
Text:<TEXTAREA NAME="info" ROWS=10 COLS=30><? echo $readtext ?></TEXTAREA>
Why isn't this reading correctly
Thank you in advanced
Aaron