i need a piece of code that can open a text file and put it into a text area to be edited
$file="domain.txt"; $arr=file($file); foreach($arr as $v) { static $build=""; $build.=$v; } echo "<textarea>$build</textarea>";
😃 simple, yet functional