forms

Detecting whether a form has been submitted with PHP

I'm looking for a clean way to handle forms with PHP that does validation and caching of data, but doesn't require mixing PHP with the form HTML. Basically, I want to be able to write a form in pure HTML and intercept that form on it's way to it's destination, process it and either let the data go happily on it's way, or return to the fo...

How to modify attributes of forms generated by webapp (Google App Engine)?

Here are model and form classes from example: http://code.google.com/appengine/articles/djangoforms.html class Item(db.Model): name = db.StringProperty() quantity = db.IntegerProperty(default=1) target_price = db.FloatProperty() priority = db.StringProperty(default='Medium',choices=[ 'High', 'Medium', 'Low']) entry_time =...

MVC.NET Reading User Information Into A Form That Failed Server-Side Authorization

I have a form where users can enter data that ultimately would be used to create new Customer, CreditCard, and Membership objects. I want to add recaptcha to the page. This does it's validation on the server side. All other verification will be done client side with javascript with perhaps an extra layer of validation on the server si...

Should posting one of two forms in a page post all fields in both forms, or have I got a bug in my code

I have two forms in a page. Have decided to update my post with more realistic code from the page itself... <form action="test.php" method="POST"> <strong>Details of work carried out</strong> <textarea name="detailsOfWorkCarriedOut"></textarea> <strong>Materials used</strong> <textarea name="materialsUsed"></textarea> <input type=...

javascript: drop down box in form with a button to add a second copy of drop down box

I have a simple form that lists user names and for each user, the form displays a drop down box with a list of items that can be assigned to the user. Since it is often necessary to assign multiple items to a user, I need to display a button next to the drop down that says "add another item" which automatically inserts another an identic...

Dynamically add rows to form with unique fields?

Hi Guys, I have a form that I am able to add new rows too for serial numbers for however many need to be entered but when i submit the form and it goes into my database it only submits the first 9 rows then loops back around and continues to submit the first 9 for however many rows have been added beyond that. Can anyone offer me assi...

Submitting POST data from the controller in rails to another website

In the web app I'm building with ruby on rails I have a form that the user submits with some basic data. The data is retrieved in the controller and more information that needs to remain private is added. Then I need to send a post request to an external website with all of the combined data from the controller. What is the best way to...

MS-Access 2003 - Expression in a Text Box on a form

just wondering when using an expression on a form in a text box, to return a value from a table, can the expression have multiple tables in the expression to return the value? the tables are linked and I can return the value in a query, so I figured that Access would be able to do it with this method as well???? =DSum("[tblMain]![Reve...

File uploading and email in JSP

I need to make a simple page in JSP. I've never worked in JSP before ever. I have a form that has two fields: one is a file upload field and the other is a textbox. The user enters one email address in the field and uploads a file and upon submission. I should be able to email the attachment to the email address entered. I need a quick...

VB6 scrollbar problem

i'm working on a VB6 project where I need to have a form and within that form i need to have a picturebox and a scrollbar to scroll the picturebox. the setup is straight forward like this: FormMain -> FormSub(with scrollbar) -> PictureBox now the problem lies where the scrollbar is. when i add the scrollbar to the FormSub, the PictureB...

Django Forms With foreign key

Hi, I have 2 models in django, and im also using ModelForm, my question is the second model have a froreignkey of the 1, and i want to have one page when generating the form. It's possible, how to link the two forms in one page. Class Event(models.Model): id = models.AutoField(primary_key=True) name = models.CharField() class Date(...

How to control the postioning of a fieldset with css?

I have the following code: <fieldset> <legend> <strong>Personal Information</strong> </legend> <ul> <li> <label for="first_name">First Name</label><br /> <input type="text" id="first_name" name="first_name" value="" maxlength="30" /> </li> ... </ul> </fieldset> ...

How is mime type of an uploaded file determined by browser?

I have a web app where the user needs to upload a .zip file. On the server-side, I am checking the mime type of the uploaded file, to make sure it is application/x-zip-compressed or application/zip. This worked fine for me on Firefox and IE. However, when a coworker tested it, it failed for him on Firefox (sent mime type was something...

Multi-level Complex Rails Forms

Hi, I'm trying to create a multi-level ajax form on my rails app that can add/remove fields associated with a new object in a form when a button is clicked. However, I need to have multiple levels to this form (i.e. if someone adds a "Meal" object, there must also be a button inside the created "Meal" form for "Add a food".) I follow...

using both :url and :function on observe_form

Is there a way to generate both a Javascript function call and an Ajax call in the same observe_form tag? For example, something like this: <%= observe_form 'user_filter_form', :url => { :action => :process }, :function => :fix_fields %> Thanks!! ...

Appending a hash '#' symbol to url with a form action?

So I've got a form with a submit button and a text input... I want: http://localhost/ to become: http://localhost/#q= I did a solution in javascript which involves changing the "action" of the form to the url with the hash onclick.. but this doesn't work in IE. Anyone have a solution that works on all browsers? ...

Query input must contain at least one table or query

I'm really hoping that somebody could help me regarding this problem. I am using Microsoft Access 2007 to build some forms while connecting to my sql database. Everything seems ok except the forms inserting data in the database showing this kind of message "Query input must contain at least one table or query" I'm not finding where the...

Matching form entries with javascript?

Hello, I have a form with markup like this.... Which voucher did you cut out <div class="answer item1"> <input type="checkbox" name="downloaded_vouchers[answer1]" id="answer1" value="1"/> <label for="answer1">Answer 1</label> </div> <div class="answer item1"> <input type="checkbox" name="downloaded_vouchers[answer1]" id="answ...

Input Form Selectable Images

I am looking to create an option within a form to choose a theme for the page. The options need to be displayed as images so the user can see what the theme looks like. What is my best way to implement this? ...

What is the easiest way to check all form values to see if they are empty C#?

Hey SO: I have a form with four values. If any of them are empty I want to alert the user. Would the best way be to just have 4 separate if...then statements? or is there some sort of a fancy thing that I can do with C# to accomplish this? thanks! code The form in question is a static HTML form: <form id="form1" action="launch.aspx"...