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
2 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
4answers
56 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. ...
1
vote
1answer
23 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 ...
0
votes
2answers
78 views
Checkbox disappears after submit
I'm trying to display my checked boxes after clicking the submit button. But my jquery script will hide the checked divs.
I would like to display the checked div even after submitting the form.
...
2
votes
6answers
3k views
Workaround for too long querystring in IE6, IE7?
I have a form which submits fine in FF, Opera, Safari, Chrome, and also IE8...
But it wont submit in IE6, or IE7...
I have noticed it is 99% sure that the problem is a too long querystring.
I have ...
0
votes
0answers
2 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
7answers
69 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
1answer
52 views
How to initialize variable only if it is set up in controller?
How to initialize variable only if it is set up in controller???
0
votes
1answer
13 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 ...
32
votes
15answers
60k views
Clear form fields with jQuery
I want to clear all input and textarea fields in a form. It works like the following when using an input button with the reset class:
$(".reset").bind("click", function() {
$("input[type=text], ...
506
votes
26answers
249k views
How to align checkboxes and their labels consistently cross-browsers
This is one of the minor CSS problems that plagues me constantly. How do folks around StackOverflow vertically align checkboxes and their labels consistently cross-browser? Whenever I align them ...
0
votes
2answers
18 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 ...
0
votes
1answer
39 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 ...
-3
votes
0answers
24 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
0answers
44 views
PHP upload form uploads some .jpeg images and not others
I have a php upload system working where I can allow a user to upload an image or multiple images to the site. The site then takes them, creates thumbnails and then stores them and the thumbs in a ...
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
23 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 ...
3
votes
0answers
26 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
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
4answers
7k views
Image button inside of form, don't want to submit
I have a form with an image button inside of it, and this image button is submitting the form. How do I override this functionality?
<form><input type="image" src="/images/arrow.png" ...
9
votes
2answers
14k views
Best practice to upload files in CakePHP
Can any one suggest me the best way to write code for uploading a file in CakePHP?
I need to upload a file and save its name in table.
If the record saving fails it should not upload the file.
If ...
-1
votes
1answer
45 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
63 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 ...
1
vote
0answers
19 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:
...
3
votes
2answers
1k views
Is it possible to wrap html form elements in multiple form tags?
would it be wrong to have every element of a form wrapped in tags in an HTML page? Am curious as to why it would be wrong:
basically I have to introduce two forms(form1 and form2) and there are some ...
1
vote
3answers
23 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 ...
0
votes
1answer
26 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 ...
-3
votes
2answers
33 views
How to pass parameter from template to a view django
I want to pass a dropdown variable from the template to a function when i click submit button
#models.py :-
class donnee(models.Model):
name = models.CharField(_('name'), max_length= ...
-1
votes
0answers
25 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({
...
0
votes
1answer
5k views
Creating a login form that use tables in Access 2007
I have created a login from, in it I have placed a "Username" field
I have managed to find a code that compares the value entered into this field (Username)
and as a result displayed a message
What I ...
0
votes
2answers
59 views
jQuery after submit, “data” is not displayed as HTML
I am using this code bellow to submit a form which is "lighthouse" or "Shadowbox". Any ways a window pops up and the rest of the screen gets dark.
var frm = $('#contactForm1');
...
1
vote
2answers
758 views
Django form validation with authenticated user as a field
Model:
class ProjectType(models.Model):
project_type_id = models.AutoField(primary_key=True)
name = models.CharField(max_length=45, help_text='Type of project', verbose_name='Project Type')
...
1
vote
3answers
64 views
Struts2 populating form data results in array for Map<String, Object>
Action class
public class ProductAction extends ActionSupport implements Preparable {
private Document product;
}
Model
public class Document {
private Map<String, Object> ...
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
46 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
1answer
61 views
Why does my form get replaced with echo “0”?
I got an error on my page that I can't identify, and when I view the site online it replaces all my site content with the value "0".
How come I can't see the forms, and is it communicating with the ...
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
2answers
41 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)
{
...
0
votes
1answer
10 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 ...
1
vote
2answers
391 views
Select at least one checkbox, PHP
I am trying to set up a form with validation. Setting up checkboxes that require the user to select at least one box is becoming quite a pain. I have tried most solutions that seemed promising from ...
99
votes
15answers
63k views
Clearing <input type='file' /> using jQuery
Is it possible to clear an <input type='file' /> control value with jQuery? I've tried the following:
$('#control').attr({ value: '' });
But it's not working.
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?
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[]" ...
-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 ...
-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 ...
3
votes
3answers
926 views
PHP $_POST variable does not process input fields generated by Javascript
I have two files, (file1 and file2). file1 includes file2 in a PHP include statement. File1 also contains a form and prints out all $_POST variables. File2 uses a Javascript button to dynamically ...








