Add text to a html form -
i'm trying add text on it's own describe steps without input box in form. possible this? line should text is:
<p>for new location please add entry</p>
i tried without <p>
tags again no success. apologies if seems simplistic saw nothing on over w3schools, site or google search.
<form action="insert.php" method="post"> name <input name="name" type="text"> <br> email address of user <input name="email" type="text"> <br> phone number <input name="phone" type="text"> <br> town <input name="town" type="text"> <br> county <select name="county"> <option> outside ireland </option> <option> antrim </option> <option> armagh </option> <br> <p>for new location please add entry</p> <br> name of new location <input name="newlocation" type="text"> <br> name of location <input name="location" type="text"> <br> link in google maps <input name="gmapslink" type="text"> <br> <input type="submit"> </form>
you mean like, having preset text input in box? believe value="desired value:
ex. input name="town" value="text desired" type="text"
Comments
Post a Comment