Tagged Questions
0
votes
2answers
116 views
POST data to another form with php
I want to create a form on my page to get information this is easily done and the problem.
I want to 'POST' information to my own php-page, creating a new id and saving the information to my ...
3
votes
2answers
163 views
Implementing inline editing for a web order form without using Javascript
As the title states, I'm trying to find a good solution to implement inline editing for a web order form with just HTML/CSS.
The only mediocre solution I have right now is this -> ...
3
votes
2answers
108 views
Is content in option tags indexed?
Is data inside an <option> tag indexed?
For example, would the following option tag allow "Volvo", "Saab", "Opel" and "Audi" to be indexed by a crawler?
<select>
<option ...
1
vote
2answers
2k views
Show submitted form input without server-side scripts
Is there a way to accept form input and have the output dumped/printed back to the web page with HTML or JavaScript/AJAX and without PHP/Perl/server-side scripts?
0
votes
1answer
48 views
How to implement a software trial request form?
On my company's website I want to have a form where a visitor can provide an email address and pass an anti-bot challenge. The server would then email a trial key to the visitor.
Background: I am ...
2
votes
1answer
52 views
html tag for grouping forms?
I thought I remember seeing this somewhere but maybe not.
Isn't there an HTML tag for grouping forms similar to the tag for grouping headers?
so for example:
<fgroup>
<form>
...
0
votes
1answer
626 views
How to make textarea look like notebook? [closed]
I want the user to feel like they are writing on notebook paper while inputting into a textarea. How may I do this?
0
votes
1answer
2k views
How to make buttons that highlight on select? [closed]
Requirement:
1. Buttons options are submitted part of form action
2. Only one option is allowed at a time (like radio button)
3. There are no bullets displayed
4. The button text 'button' is ...
2
votes
2answers
729 views
Trying to collect input values using hidden input fields
I have the following fields:
First Name: <input type="text" id="tFName" name="tFName" maxlength="50" />
Last Name: <input type="text" id="tLName" name="tLName" maxlength="50" />
Is ...
15
votes
6answers
1k views
Form label position for best usability
I'm creating a form that will ask a visitor for their firstname, middle initial, and lastname. I want the those text fields to be all inline, but where should I place the labels? On the left, top, or ...