0
votes
2answers
51 views

Validate form in Javascript

i got a problem with my Order form. I need to validate some of the fields, checkboxs, dropdown list, and the quantity of the products. So i just started with the checkbox. It have to looks like: If i ...
0
votes
1answer
129 views

Confirmation after server side validation Struts 1

I've been doing a lot of research for this solution but it seems that most answers are in ASP.NET. I am using the html:form tag within my JSP. What I am trying to achieve is showing a simple ...
0
votes
2answers
49 views

On click Windows Location not adding to form action

I am looking over a website that works in all other browsers except IE. Is there a reason why a link like below will not work in IE? Code: <form action="<?php echo base_url(); ...
1
vote
1answer
76 views

How to do an action when unchecking a checkbox?

Well basically I have 3 check boxes. Each of them has a boolean which gets turned to true when a button is clicked and the box is checked. However is it possible to do an action, when unchecking a ...
0
votes
2answers
363 views

html form - how to call different php pages based on the button selected

Problem: How to make an HTML Form call different php pages from the action based on what button is pushed? The code below is the solution I have now, but I figure there must be a better way to do ...
0
votes
0answers
111 views

Repercussions of using <form action=“.” method=“POST”>

Let's say I have a form that POSTs to the same URL that generated the form. Let's also say that the URL is somedomain.com/contractor/1/1/add-workers and it's really important that the URL remain ...
1
vote
3answers
639 views

One form, One submission button, but TWO actions

I have a form that collects client's info and then it saves them in the database sends out few emails sends the info to SalesForce (SF) department Now, the first 2 two task was easy, but the ...
1
vote
3answers
104 views

I want to know everything about “?” value of action attribute

I wanted to know everything about the "?" of action value of a form. As you see in the code below, We have a form (placed in a php template) that sends user input to be put in the database with the ...
1
vote
1answer
417 views

How to pass value from <option><select> to form action

I need to pass a value in option select to action where I have agent_id= Can anyone help? <form method="POST" action="index.php?action=contact_agent&agent_id="> <select> <option ...
0
votes
2answers
738 views

How to make multiple action in HTML form

Say I want to make double action in HTML form. The first action would be to examle1.php And the second action would be to example2.php I have code like this <form name="input" action="" ...
0
votes
1answer
53 views

I have a need to perform two actions on a simple input form? I have read and tried all previous answers on this subject with no success

The following code shows how I am trying to first write info to .txt file and then have the custom search performed. If I remark out the action in Button2, Button1 works fine and writes text to .txt. ...
0
votes
4answers
184 views

calling a php script from a form action html

I get the following error message while submitting a html form action Internal Server error html code : <html> <body> <form action="insertProfile.php" method="post" > ...
0
votes
1answer
128 views

Java - FontSizeAction for HTML JTextPane CSS

When using the code: Action sizeAction = new StyledEditorKit.FontSizeAction(String.valueOf(size), size); The button the action is assigned to inserts the HTML tags: <FONT SIZE="5"> My text ...
0
votes
2answers
109 views

form submission to a directory? Possible?

I know it might sound a little stupid here. But i downloaded a script off github and realise that one of its form submission actually reference the form inputs to a folder/dir instead of a single php ...
0
votes
2answers
1k views

I want to link a radio button with a php file

I want to link when the user choose one of the radio button below to one of the php files, also I put a button and this button doesn't appear I don't know why : <html> <body> <form ...
0
votes
2answers
227 views

Calling a Struts action of one application in other different application

I have a struts based application1(purely in java) which uses .vm for page design like dashboard(charts,graph etc.) Now I have another application2 (php) where I would like to call the dashboard page ...
2
votes
1answer
647 views

Open android application from a web page

I know that for opening android application from a link inside a web page we have to write the following in the AndroidManifest.xml: <intent-filter> <action ...
0
votes
0answers
85 views

Multiple dynamic post actions not working

My problem is, I have a search form on my page, which I use to search in the library database of our university. When I put one single search form on the page it works and I can change the type of ...
0
votes
1answer
43 views

html 4.1 action attribute

Can any one please explain me action attribute do take local disk file and work with get and post method to send and retrieve data back. I want explanation and example both. Please and thanks for ...
1
vote
2answers
550 views

<select> onchange selection without changing

I'm trying to use a select with an onChange event and I just need to show 2 possible selections, and the first one is selected by default. The problems comes when you hit the submit button without ...
-1
votes
5answers
406 views

How to send hidden parameters when i click on a link in asp.net mvc3

hi i am using mvc3 and i had a link in my site which currently pass one paramtere as shown following <a href="/Call/@Model.id">Link To Call</a> as you can see that i am passing a id ...
0
votes
1answer
131 views

Login process through a form with no 'action' attribute?

My problem is that i have an Android Class project and i need to develop a simple Android App to connect to my Univeristy's student info system. There's the link for it https://my.fatih.edu.tr/ What ...
1
vote
3answers
478 views

Exclude File <input type='file'> on form submission

I have a webform application. There is a form has a set of textbox and one uploader, one 'Upload button' and one 'Submit button'. When a user select a file using the uploader (type='file') without ...
0
votes
0answers
815 views

Link to a page with submit button without form action/forms within forms

I am working on a php/html/js page. I have two buttons. They both need to submit the same form data, but I want one to link to another page(which needs the form data from this page) and one to do ...
0
votes
1answer
316 views

How to use form action in html

i have a page, which has 2 links (search, normal button), both redirects are different url, on search click, search page should get open and on other button, form action should be set, now the ...
0
votes
2answers
331 views

return variable from file executed from form action

Let's say that I have a file (file1.php) with a simple form with the action attribute: echo' <form action="foo.php" method="post"> Name: <input type="text" name="username" /><br /> ...
1
vote
2answers
2k views

Can we redirect a page to new window with submit button

Hi i have a form on my page, in asp.net, my form is hidden, it open in lightbox on click of a link on the page. lightbox has a div with HTML form POST method and action to some URL, on click of ...
0
votes
3answers
1k views

Separate submit buttons on forms which tell form “action” to post to different files?

I have included an additional Submit button within my form which I am going to use like so. User selects item User hits "Add another item" Submit button on form. Form POSTS to itself and reloads the ...
-1
votes
2answers
656 views

php executes first with form action="<?php echo $_SERVER['PHP_SELF']; ?> [closed]

php executes first with form action=" it doesn't wait 'form action=' from html... what's wrong? <?php if(isset($_POST['submit'])) { $name = $_POST['name']; echo "User Has submitted the ...
0
votes
2answers
2k views

What does the “.” action property in form tag do?

I have a form tag that has action=".". What exactly does this mean?
1
vote
2answers
5k views

Redirect on select option in select box

At the moment I am using this: <select ONCHANGE="location = this.options[this.selectedIndex].value;"> it redirect me on the location inside of the option value. But it doesn't work as ...
7
votes
2answers
390 views

Prevent HTML form action from being changed

I have a form on my page where users enter their credit card data. Is it possible in HTML to mark the form's action being constant to prevent malicious JavaScript from changing the form's action ...
2
votes
2answers
2k views

form action=“?login” : What does the question mark mean?

<form action="?login" method="post"> <button>Login with Google</button> </form> I usually see the action refer to a php or html file but the "?login" stumps me. ...
2
votes
3answers
4k views

Two “form action's” on one line

I have just finished putting a login and register bit on my website and now I'm just cleaning things up, but then I came to this problem I have two form action's on one page, each one goes to a ...
1
vote
1answer
243 views

Rails Group Action on Selected Items in List - Best Way

I have an inbox table of emails. In each row there is a delete button: <%=link_to 'Delete', email, :method => :delete, :confirm => 'Are you sure you want to delete this e-mail?' %> Note: email ...
0
votes
2answers
2k views

pass form input value to action

I have a page (module-access.php). On the page I have a form with one text input field. I'd like to set whatever is typed in this field to be part of the form's action. <form ...
0
votes
1answer
154 views

How to get url of the form page after action?

i want to get the form url after the page has been submitted to the action page. seems like its possible in serverside : Java seeking referer but is it possible in client side javascript?!
1
vote
4answers
2k views

How to call a php function with html <form> action attribute?

Hi guys I'm having difficulties with trying to call a function when I use the html <form> action attribute. $cm = new customer_module(); $rm = new room_module(); $c_array = ...
4
votes
4answers
12k views

Set a form's action attribute when submitting?

How do I change a form's action attribute right after clicking the submit button?
0
votes
2answers
2k views

How do i change form's action property when button is clicked

I would like to change the form's action property when a button is clicked I have two buttons in a form and when each button is clicked each should post data to own url. html: <form ...
0
votes
1answer
121 views

jQuery - how to create an undoable action?

So I here have such code I use to update CSS if browser supports HTML5: $(":header").append('<style type="text/css"> body { background-color: rgb(200,200,200); margin: 0px; overflow: ...
0
votes
2answers
519 views

web-app context and FORM ACTION attribute?

If a form is served from a URL http://localhost:8080/mywebapp/books/new, and the FORM.ACTION is /books/add, i get an error, "The requested resource, http://localhost:8080/books/add not available on ...
2
votes
3answers
84 views

What is the action attribute value for this scenario?

I have a form at http://example.com/register/ . I want this form to be processed by the current page. How would that be done? Is it action="../register/default.php" ?
1
vote
2answers
2k views

HTML form with dynamic action (using JavaScript?)

I want to create a form like this: Type in your ID number into the form's input and submit. The form's action becomes something like /account/{id}/. I was told JavaScript was the only way to ...
-1
votes
1answer
80 views

I need help in action forms

I am working in HTML and forget how to The action of the form should be null (#).I have been looking through my book and even looking on the web for it can someone point me in the right directions. I ...
0
votes
2answers
887 views

Assign every TD in PHP While Loop Table a Link

I have a while loop that retrieves info from the mysql db. Now there is a column called profile. So I want every <td> in the profile to be a button that would have an action which would lead to ...
1
vote
1answer
250 views

How do I include flashvars in AS3?

I am brand new to AS3 and I am trying to move all of the data from an html file, into a swf. The old html file contained this coding: <EMBED ...
1
vote
1answer
2k views

html input file action after file selected

I am in a predicament with input files. The project I am working on has added a jQuery extension that masks all input types and makes them more 'vibrant'. However it has also caused a lot of trouble ...
1
vote
2answers
3k views

How can I assign different actions to same html form?

I am trying to assign different actions to same html form according to different submit buttons. Can I do something like this ? <FORM> ------ <INPUT type="submit" ...
1
vote
2answers
268 views

Can an HTML form action attribute be repeated?

I have an application that generates a element with an 'action' attribute. I need to change the value of the action attribute, but it's not possible to do that. However it is possible to add another ...

1 2