HTML forms are used to pass data to a server. A form is essentially a container that can be used to hold any amount of any subset of several types of data.
0
votes
0answers
5 views
Php inserts blank data into table
My code inserts an empty record into the MySQL table "activate" instead of getting the data activate.html. It calls upon activate.php which I stripped down. I also should add that I am new to php, ...
0
votes
0answers
2 views
REST form (like form_for in Ruby) for NodeJS
I have a form for adding videos to the database. I would like to use the same form for editing the videos or creating a new one. In ruby this is easy using scaffolds. But how would I achieve the same ...
0
votes
1answer
33 views
How can I select an option by the value using javascript?
I wanted to select an option from a form. If I select this option, Javascript should check if the value/content is ex. "B".
How can Javascript now check if the value/content of this option is B or is ...
0
votes
1answer
5 views
changing value of hidden input tags using Browser from mechanize in python
I am working on a web-scraping project. I am using Browser from mechanize in python.
There is a form with a few hidden input elements. I want to change the value in these hidden elements and then ...
0
votes
1answer
15 views
Django multiple forms 1 view..Form errors issue
im having some trouble with displaying form errors within one view. I'm currently a student and have been taking python classes for 2 semesters. I decided to learn some Django on my own.
The issue ...
0
votes
0answers
22 views
codeigniter form not submitting fields
I'm a newbie for codeigniter. I'm stuck at a problem, that my form is not posting values, I dont know why.
Current site works fine on local server and my testing server. As I transferred complete ...
0
votes
0answers
7 views
How to keep form from submitting when an onBlur function is active
I am very new to JavaScript and it just does not come naturally to me. I'm trying to come up with a script that will require a minimum donation. I want to make sure the form doesn't submit unless the ...
1
vote
1answer
5 views
Change transition per submit tag in a form with jQuery Mobile
Is it possible that different submit tags in a form in a web site that's using jQuery Mobile (1.3.1) will trigger different transitions and/or directions?
-3
votes
0answers
24 views
Use jQuery to change values of all input fields to include an escape character
I need to use jQuery to change the value of any input field (on form submit) to an escaped value.
If the user types an apostrophe, I need it to change to an escaped value before it is submitted and ...
0
votes
4answers
40 views
Change textarea text using jQuery
I've searched into this, however nothing is working for me...
I have this HTML:
<textarea rows="3" name="website" id="website" placeholder=""></textarea>
I would like to change this ...
0
votes
0answers
8 views
WYSIWG with jsFiddle-like features
I am looking for a collaboration tool that would allow our end users to design their own html forms to include with their project specs to make things easier for the developers. Since all of these ...
1
vote
5answers
41 views
PHP to output single and double quotes as a value for an input element
I have a value ($title) that is stored in MySQL and is being called, using PHP, to be inserted into the value of an input element. The problem is when a single or double quote is used, the value of ...
1
vote
4answers
52 views
Append to the end of an href value with jquery
I`ve got this link:
<a id="Link" href="mailto:[email protected]?subject=I-Drain Bestellung&body="></a>
Now i want to append data from an form element after &body="
So for ...
-3
votes
2answers
43 views
How to get data from html forms
my html page has a number of textboxes (in div tags that show/hide) and I want the data in them to send to a text document once the submit button is clicked at the bottom.
I'm fairly new to html ...
-1
votes
2answers
33 views
How to handle checkboxes in PHP & html form?
I'm trying to use Google Spreadsheet to store a POST form in html coded page. I've asked about it before but couldn't talk much on the topic as the code changed. I found this code on ...