0
votes
5answers
55 views

Unable to Insert Data into MySql Table using username from another $_POST function

echo "Hello : ".$_SESSION['doc_username']; //username sent from a different page by post method $username = $_POST['username']; echo "<p><strong>Showing Health ...
2
votes
1answer
365 views

JavaScript form submission doesn't send value of input type=submit

I'm using jQuery to, in some cases, automatically submit a form. Here's my code: $("form [data-autosubmit]").closest("form").submit(); It works, however it doesn't send the name and value of the ...
2
votes
3answers
108 views

Form not picking up first name

I am having trouble figuring our exactly why my php code won't pick up the first name from my form, I hope you guys can help. Everything else is emailed through fine, just the first name field which ...
0
votes
1answer
130 views

Given a query string and the empty form html it came from generate filled in html

I have an html with empty forms and I have the query string that was generated when filling in those forms. How can I merge them together into a filled in html page? Hopefully you can give me a ...
0
votes
0answers
311 views

HTTP POST request not encoded in html form

I'm trying to figure out how to create an html form witch sends an http post request with not percent-encoding. I have tried the obvious: <form action="csrf.php" method="POST"> <input ...
0
votes
3answers
2k views

how to get post from same name textboxes in php

I have a form with multiple textboxes which are created dynamically, now all these textboxes are of same name lets say txt, now is there any way that when form processing happens we could read all the ...
0
votes
1answer
452 views

Form not recognizing post variables

I have a simple html form and some php that input the POST variables into a mysql database. However, I noticed that the form would not input the data when if (isset($_POST['submit'])){ insert ...
4
votes
1answer
3k views

How to mimic an HTML form submission in a POST request?

I have HTML form that is used for sending bugreports from application to server. I need to mimic this behavior programmatically. What will the corresponding POST request (or series of requests) look ...
0
votes
1answer
320 views

Echoing row name where posted ID, for pre-selected form value

This will hopefully be an easy one, but I'm lacking the skills! <select name="search_category" id="select1" > <option value="">By Category</option> ...
0
votes
1answer
92 views

POST with curl gives correct output but with AJAX gives an error

I am quite frustrated with a very weird issue. I am trying to do a very simple thing here. I would like to post a form to an endpoint. I tried using the following command: curl -d ...
0
votes
1answer
267 views

Forcing Image Upload During Registration

Facing a bit of difficulty when trying to integrate the functionality of two different scripts. I have a login / registration system that later allows the user to go in and add a profile picture. I ...
2
votes
2answers
793 views

Firefox and Chrome replacing LF with CR+LF during POST

Why does Firefox and Chrome replace the LF character with CR+LF during POST? I wrote the following as a test: <html> <head> <script ...
1
vote
1answer
850 views

How do I post a checkbox array to a Spring 3 MVC controller?

I have a html form which has a dynamic amount of checkboxes in it. How do I post these checkboxes as an array, and how do I recieve them in my spring 3 controller?
3
votes
1answer
3k views

POST an array of custom objects to a Struts 2 action

How do I POST an array of custom objects to a Struts 2 action in Java? For example if I have the following Java object: public class Person { private String name; private String lastName; ...
1
vote
3answers
148 views

AJAX Contact Form is sending empty parameters?

Not a question I want to ask but I really need another pair of eyes on this one as it must be something silly I am missing. I have used this same script previously so I've no idea what's going wrong. ...
0
votes
2answers
278 views

What is the practical limit to the number of input elements in an HTML form?

I am developing a spreadsheet style input page that is 14 columns wide and up to 25 rows long. When any particular cell gets the focus, an additional 4 text boxes and 1 radio select with 3 options ...
0
votes
3answers
186 views

Submitting a form after processing in PHP

we have a form that grabs a whole bunch of details and then submits it to a mail program which send an email to certain people. I need to put some extra processing between the form and mail program ...
1
vote
2answers
3k views

POST a HTML Form programmatically?

I need to POST a HTML form to a 3rd party website (a Mass-SMS texting system). In the past I've done this by forwarding to a page containing a form I've pre-populated and hidden (using display:none), ...
1
vote
4answers
3k views

How to grab a hidden fields value using PHP

I was wondering how can I grab the value from a hidden field using PHP?. Here is the hidden field. <input type="hidden" name="delete" value="' . $row['delete_id'] . '" />
2
votes
1answer
171 views

ASP.net post and default page

Scenario: I have a regular aspx page with a form. When someone clicks a button the form submitted via post like normal. HOWEVER. The page where the form resides is the default page(Default.aspx). ...
1
vote
1answer
989 views

ASP page not receiving POST parameters

I am writing a small application in Classic ASP. I have a page which has a form, which posts to a second page. Included with the form's POST, are file uploads, hence the need for a POST method. The ...
1
vote
3answers
218 views

Is there any difference between {strlen($var) == 0} and {empty($var)}

considering that the variable only can be String fetched from an HTML Form (input-text, textarea).