I was trying to figure out a bug in my CRUD system with a
I want to propagate the text field with previous text for when a user needs to update the text area.
I'm using this code, setting the value to the text I wanted, but it won't work
<?php
echo "<textarea name='text1' value= '".$row['text1']."' class='materialize-textarea'></textarea>";
echo "<label for='text1'>text notes</label>";
?>
any suggestions?