html – textarea
$content = file_get_contents($file);
echo ‘<textarea readonly="readonly" style="resize:none" cols="80" rows="15">‘.$content.‘</textarea>‘;
<textarea cols="10" rows="20"></textarea>
<textarea rows="5" cols="60">this is default text</textarea><br>
<textarea rows="8" cols="50" placeholder="this is default shadow" style="resize:none;"></textarea>
<textarea style = "resize: none; width:800px; height: 800px"></textarea>
<textarea style = "max-width: 800px; max-height: 800px; width:200px; height: 200px"></textarea>
<textarea readonly="true"></textarea>
<textarea disabled="true"></textarea>