I have a page to edit some settings and then send the new data off in a form to be added etc.
In some of the fields there's quite a bit of writing so just the one line is sometimes not enough and it looks messy.
How can I add multiple rows/lines to an input such as
<input type="text" name="site_notes" rows="5" class="form-control" value="<?php echo $site_notes; ?>">
As you can see I already tried rows= and it didn't work. I'm aware of textarea but as I was reading about it I saw you cannot have a value in textarea which is even more problematic.
Are there any workarounds to this?