I have a textarea I use as a form on a website.
I usually use place "placeholder" text inside, but I need this information to come up editable.
What I used to do was just feed info from my database into the "value" attribute of the form. The form would then just pop up with my data, ready to be edited.
For some reason though its not working with my textarea!
Here is my code:
<textarea value='<?php echo $info?>' class="form-control" id="message" name="message" rows="5"></textarea>
I know its not the data because iv echoed it elsewhere and its fine. I also tried
<textarea value='hi' class="form-control" id="message" name="message" rows="5"></textarea>
with nothing showing up.
Whats going on ? I used to do this all the time. Im using bootstrap 3, could it have something to do with that ?