Re: Read a file of string into what?



I think you mean this:
$handle = fopen("filename","rt"); // where filename is a file on the
server
$contents = "";
while (!feof($handle))
$contents .= fgets($handle);
fclose($handle)
?>
<textarea name="textinputform" cols="30" rows="5"><?php echo $contents;
?></textarea>

assuming you know all about forms.

.