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
1answer
40 views
PHP Multiple form in same page
I'm doing form in php but I have some problem.
First I will have 3 different form in the same page.
What I want is only 1 form appear and then with the answer a second form will appear and so on.
The ...
1
vote
0answers
19 views
How to update multiple rows and database with same value at once? Laravel
I'm stuck in code. I managed to create a form that adds a variable number of rows in db but I do not know how to update them at the same time.
This is table 1 (products) structure:
id | product_name ...
0
votes
1answer
35 views
Variable from html form not passing to Javascript window confirm
I'm not new to stackoverflow as I've been getting answers to my questions (asked by others) answered here for quite some time, but I finally ran across something I've not been able to find an answer ...
0
votes
2answers
22 views
join () function if data entered
I have a jQuery mobile form with the data posting to a review.php form. When there is no data entered in an array of check boxs (no data needed from user) the review returns
Warning: join() ...
0
votes
0answers
15 views
Ajax Login Query Page
I have 2 Logins.
One is within the navigation and is working flawless.
One is on my "no permission page" and i copied the ajax code and the form, changed some stuff but there is no chance i got it ...
0
votes
0answers
30 views
Using foreach loops to populate forms using saved data from mysql
I've created a dynamically generated menu for users to post project milestones. It uses a table that allows the user to enter the date and description of each milestone and save them to a database. ...
0
votes
2answers
26 views
PHP Form is automatically sending email on load
I swear I had this working a couple hours ago but suddenly instead of only sending the form and saying "Thank you for filling out the form!" once the form is submitted, it does it once the page is ...
1
vote
0answers
10 views
Validating and update entities in Zend Framework 2 + Doctrine 2
The title may not be as accurate, if someone finds a better one and can update it, please do so :)
I have a small CMS to edit users.
I'm using Zend Framework 2 + Doctrine 2.
I have a fieldset + ...
1
vote
2answers
30 views
Having trouble passing form that consists of php variables
So I have 2 pages of my multi-page form that I am using to test. When I test the first part of the form seperately, it works fine. Everything is being displayed accordingly to the information that ...
0
votes
3answers
49 views
Why doesn't my form update the database?
Sorry for the amateur question here, but I've created a form that, for the life of me, I cannot debug the reason as to why it won't submit the updates into the database.
An example is here: ...
-1
votes
1answer
16 views
can you change preset html form input value?
So if I have a form with a text input, or a select input, I want that box to have a certain value when the page loads. I know you can add,
value="pre defined value"
but when the user erases that ...
0
votes
0answers
13 views
Post to iframe target: cannot get response from iframe
I have a bookmarklet. When it is clicked (on any page):
1. it inserts a script element with src from mypage.com. This src is downloaded.
2. The src then:
- inserts an iframe (DOM)
- inserts a ...
0
votes
1answer
24 views
Conditional Formatting on an MS Access form
Is there way to use conditional formatting (similar to excel) to a text box in an ms access form? The user will enter a number in the text box. If the number is between 0-25 is red, if its from 26-50 ...
0
votes
0answers
22 views
How to kill child process that run exe file to do'nt close the form call that file
I have a Form is MainForm, mainform have button to call Editor.exe here is code call exe file:
private void InsertEquaButtonClick(object sender, EventArgs e)
{
Process p = ...
-2
votes
2answers
28 views
How can I pre-populate a field with data from mysql database?
I have a list of cities in a MySQL database called cities.
When a user visits my webpage and begins to enter data into a field how can I pre-populate the field with a list of cities that matches the ...