I use a PHP variables as the value for the text input field, however the size of the value does not effect the size of the text field so the user has to scroll. As the PHP variable is data from an SQL tables, the value is not always the same and I therefore can not user HTML text area. The code is:
<input type="text" name="aboutme" value="<?php echo htmlspecialchars($aboutme); ?>" >
How can I make it so the text field gets bigger as the value gets bigger, resulting in there being no scrollbar.