form

login - change form action based on selection?

I have this script on a mafia game where i have 4 worlds/servers I have index.php where i want to login directly to one of the servers by selecting it from a option I have this code and i need to change form action <form action="/ro1/index.php?action=login" method="post"> <input id="user" name="user" class="text" type="text" value="Na...

Dynamically add input boxes into form?

What I am trying to do is very similar to this question: http://stackoverflow.com/questions/1894009/using-jquery-to-dynamically-add-form-fields-or-fieldsets-based-on-a-dropdown-bo Specifically, I want to use a drop down box value to add that number of input boxes to a fieldset. I do not know jQuery so the answer I am linking to hasn't ...

style a form (select) using javascript, no framework?

anyone know how i can style a form element with javascript, but without a framework? Found a nice plugin for jquery but I don't use jquery at all on my website so I want to avoid it if possible.. I want to create a select box that looks like this: http://iforce.co.nz/i/qebncmoz.png to clarify, i want to set an image/background on the...

c# how to FormWindowState.Normal

greetings, i have this code: private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { this.WindowState = FormWindowState.Minimized; about About = new about(); About.ShowDialog(); } it minimizes the parent window state to minimized and displays a splash form. my question is when the ...

Why form posting yields $_FILES['thefile']['name'][0] instead of $_FILES['thefile'][0]['name'] ?

When you name several file input fields with the same name and an array index like so: <input type='file' name='thefile[0]'> <input type='file' name='thefile[1]'> Then in the form submission you get this: $_FILES['thefile']['name'][0] $_FILES['thefile']['name'][1] And so on with the other fields. I find this annoying because it preve...

Handling unknown number of values in PHP file

The form that will be submitting the data will have somewhere between 10 and 100 values being sent to the PHP file. The number of inputs is stored in a variable called count within my javascript function but I don't know how to transfer its value to my PHP file. Another idea I had was to have a while loop that detected a null value and...

Wordpress inline label (jQuery)

I'm building my new theme and I've a problem. I use jQuey to display the input's label into the input : this.label2value = function(){ var inactive = "inactive"; var active = "active"; var focused = "focused"; $("label").each(function(){ obj = document.getElementById($(this).attr("for")); if(($(obj).attr("...

Dynamically populate a pdf

Could anyone help me? I need to insert information to the header of a pdf from a customer form online with php. I am not a programmer so I need a sense of direction before I speak to my developers. The idea is to get licence information from a field, insert the information to the header and save the result as securely as is reasonably...

Winforms Open Last Closed Form.

Hello there.. How do i Re-Open Previously Closed Form. Like I have Form 1 and Form 2 and Form 3 Previously I have opened Form 1 and 2 and Closed them then How do i track that previously i have Closed Form 1 and Form 2 anyone who face similar issue and have the solution please Help.... ...

I don't want url #hash to be in the url after submitting the form

update: In this case action="url.php" works as I desired When I submit a form (I use get method), the url #hash part also got appended to the end of url after submit of the form. I tried to change the action of the page to get rid of this url #hash from the string. I removed the action part from the form, provided action as action="url....

VBA/Corel Draw: How to send binary and text file in HTTP POST request to server from VBA/VB6 script running from Corel Draw 12/X4?

I want to send Corel Draw .CDR drawing binary files and XML SVG files from the application to a server via HTTP POST. I have done some research and this existing post seems closest but doesn't work for my situation: http://stackoverflow.com/questions/158633/how-can-i-send-an-http-post-request-to-a-server-from-excel-using-vba I've added...

Getting dead.letter... Saved message in /home/content... after sending message in a form

I am using a wordpress plugin that sets up a basic contact form on a website. After filling in the fields and submitting, I get the dead letter message. I have read what a dead letter is, but I don't understand why I am getting the message. The email is actually sent to the recipient, but he does not like this error showing up and scarin...

jquery $.post won't disable a form

$('#com_form').submit(function(){ var ele = $(this); $.post("includes/agenda_com.php", { texte : ele.find('textarea').val(), id : ele.find('#agenda_id').val(); }, function(data){ if(data=='foo') { alert("Erreur ! votre commentaire n'a p...

creating input field for html form... but adding a 'label' for it as well?

I have an html form. When you click the button, a javascript function adds a new field. I'm trying to have the function also add a 'label' for the field as well. I've tried using document.createElement("LABEL"), but that doesn't let me change the innerHtml (or maybe I'm doing it wrong..), nor add a closing Here is my code. Thanks! ...

html form calls on a php file.. but variables are not read

I have a simple html file with the code below. It calls submitform.php. But nothing gets displayed. Any ideas? <html> <body> <form action=submitform.php method=GET> First Name: <input type=text name=first_name size=25 maxlength=25> Last Name: <input type=text name=last_name size=25 maxlength=25> <p> <input type=submit> </form> </body...

adding inputs to html form, using javascript

Hello. I have an html form that I would like to add inputs fields to using javascript. Originally I had the input fields by themselves underneath the 'body', and the following was able to add the fields: // Create number input field var phoneInput = document.createElement("INPUT"); phoneInput.id = "phone" + instance; phoneIn...

Is it possible to submit a form in asp.net without any server controls

Hai guys, I had this doubt for a long time now. Now being a part of stackoverflow i ve decided to ask it... Consider form without Runat="server" and it contains two html text boxes and a html button all without Runat="server", now my is it possible to submit this form and i have to insert the values in my DB... ...

How do I display a name for a form that is not its real name?

When a form opens in MS Access, it displays its name on the title bar of the form. I want to hide the real name of my form and display a more user-friendly name on the title bar. How can I do this? ...

sanitizing pre-filled user-supplied form input

I have a form which accepts text input. I would like it to be able to accept characters such as & and ; and > and <, which are useful characters for the data being supplied by the user. I want the user to, for example, be able to say The ampersand (&) is encoded as & (and I see from the preview that I can't even do that here - it shou...

Browser-populated form input text gets styled differently, makes input fields unreadable.

I'm working on the my site which is done with a black background. I've changed the coloring on the form input fields. However, when I return to a page with saved text in a field, the background color becomes white, and the text color stays a light color (grey) and thus becomes somewhat unreadable. e.g. input{ background-color:blac...