<textarea style="resize: none;">
<?php
while ($row = mysql_fetch_array($result)) {
echo $row[1] . "\n";
}
?>
</textarea>
I want to prevent the last value from having a newline – how would I go about doing that? I don’t want the white space at the bottom.
1 Answer