Is there any way to change the length of a input form? The code im using right now is this. <form method="post" action="/archivePage.php"> <br><input type="text" name="url" value=""> <input type="submit" name="submit" value="Submit"> </form> HTML: I want to make the input box longer, how would I go about doing this?
you need to use a text area to do that: <textarea name="NAME" rows="XX" cols="XX"></textarea> That will change the width and height, rows="XX" will change the height and cols="XX" will change the width.