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.

learn more… | top users | synonyms (1)

0
votes
0answers
14 views

Toggle between a textbox and a select using PHP

I have a basic customer information form that I would like to make a little more interactive. The idea being if the user selects a country that is not USA or Canada the state Select turns to a state ...
0
votes
2answers
17 views

javascript simple validation not working?

does anyone know why this simple javascript isn't working? it should change the css of the class "t1" from display:none to display: inline to make it appear when the input is empty onSubmit I just ...
1
vote
1answer
20 views

Listview skips first column

With this code I add values in my columns. But the first column is constantly skipped. This is the code I use: foreach (Muziek m in lijstMuziek) { ListViewItem lvi = new ...
0
votes
0answers
9 views

Django ClearableFileInput widget doesn't set FileField to None

My Django app is saving articles and includes a upload file field that uses the ClearableFileInput widget When I set an article to publish, that's calling a task to send emails. It seems to work, ...
0
votes
5answers
27 views

What is the correct use of value in HTML form inputs?

If I make an input or textarea with a value attribute, when a user enters some info in that input, will the value submitted to the server change? If this is the case, does "value" just serve as an ...
0
votes
1answer
10 views

Uploadify destination folder problems

I am trying to use uploadify on my site. After following the instructions for implementing it exactly I cannot figure out why the files aren't finding their way to the folder, and i'm becoming ...
0
votes
0answers
22 views

How could i attach an email address to the w3resource form validation example

I recently read an interesting article about php form validation on the w3resource site on how to validate forms via PHP, but it did not include a method for sending the data to an email address. The ...
0
votes
4answers
58 views

Form does not work unless .Show() is called

I have a form that represents a USB device Terminal that has been giving me some errors. After half a day of debugging strange errors with no known source I somehow found out that the Terminal does ...
0
votes
0answers
10 views

Working with formsets inside formsets

I'm having difficulty trying to add a bit more of complexity in my Challenge Registration Form on my website written in Django. So, here's the deal: When users are creating a new Challenge , they ...
0
votes
2answers
12 views

Change the style of Kohaha forms

How do you add styling to Kohana 3 forms. <?= Form::input('new_tag', '', 'style="height:1000px;"');?> This doesn't seem to work. It complains that it needs the third parameter as an array. ...
0
votes
0answers
15 views

Adding Price value to form and calculating

So I have looked around here and havent seen something that can help. Basically I have a form that works great. The form gets submitted to a review and from the review page you can send it off. What ...
0
votes
0answers
10 views

Trying to check file MIME types using JQuery

I am trying to validate the selected files in image upload form using Jquery. I wanted to check whether the files MIME type matches one of the image types in an array of allowed types. Currently the ...
0
votes
0answers
7 views

Google Analytics Cross-domain tracking via dynamic Javascript Form Submit

We are trying to understand why our campaign UMTZ values aren't getting passed from our domain to our booking site's domain. Currently we do not use a standard HTML form submit but instead build the ...
0
votes
0answers
21 views

How can I check the number of files selected in upload form using Jquery for validation purposes

As part of my form validation I would like to check 3 things when a user clicks the submit button. That at least one file was selected for uploading. That no more than 5 files were selected for ...
0
votes
2answers
15 views

form validation using Jquery to check character length

I am attempting to use JQuery to count how many characters are in each input field. Currently I have this code: $(document).ready(function(){ $('#add_post_title').keyup(function(){ var max ...
0
votes
0answers
3 views

Filtering Access Web Form combobox based on others

What I'm trying to do is very simple in concept. I have a table with vehicle information.The columns are car brand (i.e Honda, toyota,etc), car class (compact, subcompact, hybrid, etc), and then ...
2
votes
3answers
69 views

How can I implement html input form without backend

I want to implement a contact form in my site, similar to this, but simpler. (I only need email and content inputs) http://www.squarespace.com/contact/ The problem is that I have no backend support. ...
0
votes
0answers
5 views

Best approach for create form using Twitter Bootstrap Wizard

I’m using this plugin (http://vadimg.com/twitter-bootstrap-wizard-example/) to create a wizard of 3 steps, every step have different inputs: 1. http://prntscr.com/1as5w7 2. http://prntscr.com/1as62h ...
0
votes
3answers
24 views

How can I update 3 tables at the same time with 4 id fields?

I have a form for adding offers that belong to companies. I can delete and add them but I can't get the edit to use. When I click edit only 1 table changes and I don't know how to work this out. I am ...
-3
votes
0answers
29 views

Creating PHP/.NET bot for filling forms and buying with credit card [closed]

Is there a way to build PHP/C# bot to handle forms and make credit card deals. There's a web site offering buying kind of text,pdf metirial. You enter information about the order in a form,when ...
0
votes
2answers
42 views

Make 2 cURL requets with $_POST

I am trying to do 2 requets in cURL. The first request is login me in, and I conserve a txt file to make the second requests when still loged. The first part work like a charm, the second part ...
1
vote
1answer
16 views

ZendFramework 2: Locale Currency values in a form

Is there any way to convert how a text input displays a currency in its value in correct locale number format from within the Form construct method or ViewHelper? e.g. value from database is ...
0
votes
2answers
36 views

Form submit/update onclick

I must rebuild a form, there are two buttons, one is for increasing the value of an input and second for decrease the value, and I must delete submit button and update form always if I click on ...
0
votes
2answers
24 views

Spring form with nested objects throws target object binding error

I am trying to use a Spring form with my controller and the entity it is mapping to has nested objects. When try to hit the page with the form it throws the below error. Am I not initializing the ...
0
votes
0answers
9 views

Registering 32bit OCX in WebBrowser Control (Windows Forms) running on Windows 7

I have a 32 bit windows forms application that contains a WebBrowser control. I'm trying to navigate to a custom webpage that includes some activex controls, but I'm not receiving any prompt message ...
1
vote
1answer
24 views

Assigning multiple attributes with radio buttons

Im building a plugin to spree, that i need in my application. We are using a shipping company that doesn't deliver to private adresses but to some parcel shops around the country. So when the user ...
-1
votes
2answers
31 views

insert HTML form data to a MySQL database with PHP

I have a problem with this piece of code because it does't work but it seems to be semantically correct. It arrive up to "die("Errore nella query: $query.");" but I can't understand why. Help me ...
0
votes
1answer
52 views

php array as name for post is not working

i have a startpage with a <form>. there i have a <select> with an array as the name. echo "<select id=\"SearchType\" name\"=SEARCH[type]\" >\n"; echo "<option ...
1
vote
0answers
26 views

Linked entities (OneToMany) not shown in Play2 Java form

I'm having trouble with a Play! 2 form in which an object (a member of a neighbourhood association) containing two Lists (of persons in the household and of bank accounts) is edited. Weirdly, the list ...
0
votes
0answers
7 views

Linking two jsp pages with Submit Button Liferay

I have a form where I allow user to select some data and submit the form and based on that selection data will be displayed in another jsp. I have used the following code in first jsp: ...
-1
votes
1answer
46 views

insert HTML form data to a MySQL database with PHP [SOLVED]

I have to insert: name, surname, email, username and password passed by an user by an HTML form to a PHP page that do this: <?php $name = $_POST["nm"]; $surname = $_POST["cgn"]; $email = ...
1
vote
3answers
24 views

How Are Multiple Forms Handled?

I have a webpage, which has an overall form element surrounding all the code on the page between the <body> ... </body> tags on the page. As part of the webpage, there are two additional ...
-1
votes
0answers
29 views

HTML &PHP - Part of the form gets sometimes hidden behind a div [closed]

I am developing a website using HTML and PHP. In one page, I have a div that contains a form. The form has several select lists, textboxes, and textareas. The problem is that sometimes, when I open ...
0
votes
0answers
8 views

Smallipop tooltip on mobile devices hides after beign clicked inside

What is wrong with this code? [1]: http://jsfiddle.net/R6Mqe/10/ I use Smallipop, and I want to make it visible on mobile.. Settings are here showed: $('.test').smallipop({ ...
3
votes
0answers
29 views

Have different names in class field and bound form input with Spring forms?

Does anyone know if it is possible, using automatic Spring databinding with tags, to have the form name be different from the class/object field it is bound to? I am working on a system where, by ...
1
vote
3answers
64 views

How do I delete a row without having the id in url? codeigniter

I have a form for adding aanbiedingen (offers) from companies. I use three tables for this: Aanbiedingen - - - - - - - idaanbiedingen //id Aanbieding //offername Omschrijving //description Prijs ...
0
votes
1answer
31 views

PHP Get Current Input Value and New Submitted Value

I've got a profile page that shows a users current account number in an input field. The user can change this account number and submit the form to update the database with their new account number. ...
-4
votes
0answers
47 views

Can any one make send.php script from the html given below thank you

Anyone make send mail php code for this html form are given below with notification after submission the form Thank you very much HERE IS HTML CODE <div class="col-2-3"> <h4> ...
0
votes
7answers
70 views

Pass a variable from an open form C#

I have two forms, Form1 and Form2. Form1 has a variable int x. When the program is executed, Form1 is hidden and Form2 is shown; however i need to call the variable from the existing Form1. I know ...
0
votes
2answers
46 views

Need Value from Simple Javascript Addition Multiplication

I'm not sure what I am doing wrong, but I am just trying to get a total price to display after you make a selection. I want to take the value of the selection and multiply it by 100 and then use the ...
0
votes
1answer
11 views

Translating classic asp function to php: looping through request.form

I'm fairly new to php. I'm trying to translate a classic asp vbscript function to php. It's looping through the request.form values and generating a string. I found this article about looping through ...
0
votes
0answers
13 views

bootstrap formfields inside Iframe lost the size

I'm not sure why but, when a bootstrap page with a form is called thru an iframe the formfields lost the size (class="input-xlarge") Why? how do I fix this?
-1
votes
0answers
8 views

Uncaught TypeError: Cannot read property 'phonec' of null

(function() {with (this[2]) {with (this[1]) {with (this[0]) {return function(event) {verifyMyPhone(this.form.phonec.value,this.form.ac.value,this.form.bc.value,this.form.pin.value) Uncaught ...
0
votes
3answers
48 views

POST values are not being returned as expected

I have a form (an invoice) with a set of inputs (for charges). <tr> <td><label>Description:</label></td> <td><input type="text name="description[]" ...
0
votes
2answers
43 views

Listview c# instead of listbox

I have a List<Student> where for every student 4 properties. At the moment I'm using this: listStudents = new List<Student>(); foreach (Student s in listStudents) { ...
-1
votes
2answers
19 views

Getting Price by Multiplying Dropdown Number in Javascript [closed]

I have created a form with payment options. I would like to display the price they will be paying based on how many accounts they are submitting. They will be selecting from a dropdown menu how many ...
0
votes
1answer
30 views

Take contents of UITextField and insert it into an online form, press button, and get result back

I hope that this flow chart adequately describes what I would like to happen. The webpage in question is here. It is the top textbox and the "Latin to English" button. You can type in "Semper" as ...
0
votes
1answer
34 views

print a variable from function to a textbox in windows form (c++/CLI)

Hi i have a program that normally runs under console, now i have to make it a user's interface. So i made a new project (Windows forms) and start adding the headers .h and .cpp onto it from my ...
-1
votes
2answers
34 views

Jquery Click Event on Form Input Not Running

I am creating a math problem website and in one page I have a part where the user clicks submit and it will check whether the answer is right or wrong. Here is the main part of my code that I am ...
0
votes
0answers
6 views

How can I overwrite a mysql table record with the Contact Form DB Wordpress Plugin

How can I overwrite a mysql table record with the Contact Form DB Wordpress Plugin? I use the Fast Secure Contact Form Plugin as my HTML frontend contact form and I use the Contact Form DB Plugin to ...

1 2 3 4 5 628