Tagged Questions
-1
votes
1answer
118 views
form in php and submit button?
I have the form and the php, the form asks the user what he would like to buy and the user selects and it adds it up, i want it so that when the submit button is clicked, the data that is stored in ...
-1
votes
5answers
82 views
Send values from HTML Form to PHP
How do I link the PHP to the HTML form? I understand how to do the PHP and how to do the HTML, but how do I link the php to the html or is that automatic,
how does the HTML form know about the PHP?
0
votes
1answer
50 views
self referencing form
The issue I seem to be having is with a self referencing form I have set up, at the moment there is the booking page, which executes a single PHP file which displays the self referencing sticky form. ...
0
votes
3answers
70 views
JavaScript Form Validation
I'm trying to create a form submission and before the form is submitted, I want to verify the credentials.
I have both this so far
HTML formatted for XHTML
<?xml version="1.0" ...
0
votes
1answer
31 views
Formatting these forms correctly
I have a situation where nested forms would work great, but apparently nested forms aren't really allowed.
Take this following example:
<form method="post" action="bid.php">
<input ...
0
votes
0answers
91 views
Wizard Primefaces: Problems with navigation and h:form tag
I'm tring to custom the NavBar of Wizard Primefaces component.
So I'm using the attribute showNavBar="false".
if I put the tags around the wizard with the navbar out of this tag, all around the ...
4
votes
1answer
297 views
Can't get value from tinyMCE editor
I am using JSF 2.1. I'm trying to use TinyEditor on a . Here is my code of xhtml file-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
0
votes
1answer
30 views
In xhtml is this correct syntax of unchecked radio button
In XHTML I know that this is correct for a checked radion button:
<input type="radio" checked="checked" name="bar" value="baz" />
And absence of the checked attribute means that the radio ...
4
votes
8answers
3k views
How to vertically align a html radio button to it's label?
I have a form with radio buttons that are on the same line as their labels. The radio buttons are however not aligned vertically with their labels as shown in the screenshot below.
How can I ...
0
votes
1answer
105 views
Best practice for saving a dynamic HTML form
I'm looking for the best practice for saving a dynamic HTML form. The fields of the form are added the the page by AJAX. Each field is similar to:
<input type="text" name="field_12" />
...
1
vote
1answer
108 views
How to layout a form with 1 input field + submit button so that <form> and <fieldset> backgrounds do not shine through?
I am trying to make a very simple XHTML/CSS horizontal toolbar with several "tabs", 1 of them being a very simple search form.
I have the following XHTML code:
<?xml version="1.0" ...
0
votes
1answer
303 views
Integration of Javascript and PHP functions and Validation
I had an assignment where I needed to call a validation onsubmit in JavaScript. This part worked beautifully.
The second part was to incorporate PHP validation for the server side. The coding is ...
1
vote
0answers
48 views
How to properly protect form action attribute [duplicate]
Possible Duplicate:
Is it a good practice to use an empty URL for a HTML form's action attribute? (action=“”)
I was told that it is unsafe to leave the form action attribute ...
0
votes
5answers
196 views
Creating a form that lets users select an image on the page
Attached is a screen shot of a portion of my page which I am trying to code. I want the user to be able to click an image and that selection is recorded and then sent to me so I know which design they ...
0
votes
2answers
118 views
Uploading image with php generates error
I have a form which is located here, http://brandybrowauto.com/npo3.html, and the code is below. The first section is the html form itself which just collects some information and then calls npo3.php ...
2
votes
1answer
81 views
It is possible to manipulate the 'autocomplete browser data' in a text field?
Today I read some posts about the 'autocomplete' browser generated in the text fields, and i was wondering if it's possible to manipulate those results with jQuery, like highlight some part of the ...
0
votes
1answer
170 views
How to make complex form on table and avoid nesting <form> elements
I'm going to ask probably the stupidest question you've ever heard (shame on me).
I want to make write a markup for table which should look something like this:
...
1
vote
1answer
129 views
symfony2 valid w3.org xhtml - sf2 form validation fails the w3.org validator
I've got a problem with valid w3.org XHTML - the validator shows an error on the required attribute of an input:
There is no attribute "required".
I believe that this attribute is essential and it ...
1
vote
2answers
164 views
PHP XHTML Strict form is not working
I have tried for a very long time now to figure out, why this form is not working. It is not even displaying the error message if you don't type anything.
I hope someone here can point out the ...
0
votes
3answers
52 views
Javascript not accessing value in form
I'm learning javascript and xhtml for the first time at the moment and I currently have a problem which I have not been able to solve. I think it's a fairly simple fix, I just don't have to knowledge ...
0
votes
1answer
80 views
Select element as part of the text flow
I've got a little problem with displaying a select element on my web page. I'm trying to show a select element as part of the text flow, so that a user doesn't notice it's actually a select element ...
0
votes
2answers
216 views
post multiple multi-select boxes
I have a form that I'm using to create time ranges throughout a week. Right now it is select the day of week, start time and end time. I have javascript appending a new grouping of this same form and ...
0
votes
2answers
59 views
HTML Email Form Error
In the following HTML form I am unable to derive the username. Is it because of using "ID" instead of "NAME"? Do suggest an alternative to overcome this problem.
<form action="mailto:demo@demo" ...
0
votes
2answers
180 views
How do I create a drop down list with each value functioning as a link to another page?
I am trying to create a navigation shortcut on a web page using a drop down list.
I have the basic list:
<form>
<label for="xx">Select a Location</label>
<select name="xx" ...
-3
votes
2answers
305 views
How to add&remove input text box dynamically?
Suppose there is a group of elements like:
<p>What's your question?</p>
<input type='text' name='question'/>
And there is a button:
<input type='button' value='Add' />
I ...
5
votes
6answers
826 views
Input Box Alignment?
How can I get my boxes to align with one another if the text in the is longer than the others.
I have this entire form within an unordered list.
I have copied and displayed the code via jsFiddle, ...
0
votes
2answers
412 views
Is there a semantic way of using 3 select boxes to choose 'Date of Birth'?
I'm currently building a web form and I need users to enter their DOB.
I have used 3 select boxes at the moment. One for the Day, one for the Month and one for the Year.
I have wrapped them within a ...
0
votes
2answers
64 views
Why non-displaying HTML tags interfere with Displaying tags
I often face a problem when I need to encapsulate some far apart fields in one form, and the fields in between them in other forms. Or encapsulating first two rows of a table in form and other two in ...
2
votes
3answers
100 views
html form value before and value after
I wondered if this was possible:
It looks like this:
<tr>
<td>
Full Name:
</td>
<td>
<input type='text' class="inputbox" name='fullname' value='<?php echo ...
0
votes
3answers
575 views
using multiple forms or multiple submit buttons, whats the difference?
Basically, what pros/cons are there to using multiple forms in the same web page vs one form with multiple submit buttons? Any difference at?
0
votes
1answer
128 views
Problems making a dynamic form with javascript and css: iding/showing fields dynamically doesn't work. Can You help me?
please, I need help. I am writing my website and I need to create a "dynamic form". So I decided to do this using javascript.
I have a form with various fields. Two of them are two radio buttons. ...
1
vote
2answers
105 views
How to validate a url address and make sure it contains at least part of a url in javascript?
For this example lets say I want to validate a google plus profile URL in JavaScript.
A typical google plus profile URL looks like:
https://plus.google.com/115025207826515678661
I basically want ...
3
votes
2answers
478 views
Why is my checkbox input always the same?
I have a form (posted below) and the value submitted for the checkbox does not change. I added the value attribute to the input to try and alleviate this issue but now instead of the debugger always ...
0
votes
2answers
71 views
Why is this form input disappearing on a refresh?
I'm debugging a form and I find that when I refresh the page that one of the input elelments are set back to nothing (password) and the other two retain their value (text and checkbox). This is in IE ...
0
votes
1answer
76 views
URL quoting characters inside the value of a hidden input
Say I have a form whose action target expects a value with spaces in it. If I were typing the request out manually as a URL, I'd use %20 to escape the spaces. If I use a hidden input for this ...
3
votes
2answers
130 views
Should I use a FORM element if I'm not submitting data? Proper (X)HTML markup
In my web application I have a user profile page. That page has these elements on it:
Connect with Twitter
Connect with Facebook
Timezone Select
Language Select
The first two things pop up an ...
0
votes
0answers
804 views
Why is the form input field border not visible in chrome/firefox, but displays perfectly in IE?
OK. I was designing a very simple login form, with just username, password text fields and a submit button. And all that I've used are css and xhtml so far. I was doing a cross browser test, and ...
7
votes
1answer
8k views
w3c validator gives 'document type does not allow element “input” here…' error
I got this error when validating my page with w3c's validator.
Source:
<form action="form.php" method="post">
<input type="text"/>
</form>
Can someone show me why I may have ...
1
vote
3answers
551 views
input fields alignment issues
input field are not getting aligned and they flow out of the container. What causes that? Here is the code and page. I need the labels aligned left and input field all aligned too. Is it ok to give ...
1
vote
4answers
139 views
Simple JavaScript issue involving forms and alerts
I'm trying to make a form which takes in a users name, and then when the submit button is pressed, an alert is displayed saying good morning, afternoon or evening (depending on time). I feel like I'm ...
1
vote
2answers
1k views
Form Field flexible shadow with CSS
I have a form to be worked upon. Here is the image
The problem is every form field has a shadow on left, right and bottom which should be flexible. I have not started my work on it at all but not ...
0
votes
1answer
209 views
This form doest not update the user selection at the drop down list when submitting the form through PHP
<!DOCTYPE html>
<html>
<script type="text/javascript">
function updateSelectTarget () {
var id = this.options[this.selectedIndex].value;
...
-2
votes
1answer
164 views
xhtml Search Form giving errors via Validator, need some help? [closed]
I'm having a little trouble with a search box that i'm placing on a mobile xhtml website, it seems to display correctly (the search image a little off), but i'm getting errors with the validator, can ...
1
vote
2answers
345 views
button submit trigger on enter
This is probally small question for a pro.
i want to know if i replace input submit button with button (type=submit), would it still be trigger on enter (keyboard) and if yes, then which browser wont ...
4
votes
3answers
5k views
Non-deprecated equivalent of <form target=“…”>
I want to achieve the same as...
window.open('lalala.php', 'lalala', '...');
But I want to send a HTTP POST request instead of a HTTP GET request. Thus, I'm using the following:
...
0
votes
1answer
278 views
Ajax Form Submission with out new page loading (error on IE)
Basically:
When you click login via Firefox or Chrome or Safari, the form submits as I want it to; running a validation via ajax then opening a new page.
However, in IE(x<9) the submission ...
0
votes
4answers
3k views
jquery remove form input field
Okay I'm a newbie to jQuery and am getting stuck on .remove() after doing a click
jQuery:
$(document).ready(function () {
$('.remove_group').click(function(){
var remove_group_name = ...
2
votes
5answers
980 views
What is the Maxmium no of input tag in an html form?
i can't find any information inside the w3c html strict spec
http://www.w3.org/TR/html4/sgml/dtd.html
0
votes
2answers
977 views
HTML form for PHP file upload: no textbox
My PHP book gives a template HTML form for uploading a file:
<form action="upload.php" method="post" enctype="multipart/form-data"/>
<div>
<input type="hidden" ...
0
votes
2answers
2k views
PHP: Pass multidimensional array between pages? Serialize/unserialize not working
I'm using hidden forms to pass variables between pages (using POST). It's working fine for scalar variables; however, when I try to use arrays I've supposedly passed, it looks like the value I'm ...
