Tagged Questions
1
vote
2answers
56 views
Form not submitting values to POST array PHP
I have a form which can be seen below:
<form id="myForm" action="register.php" method="POST">
<input type="text" name="email" id="email" onfocus="fieldSwap('inputhover.png')"
...
0
votes
2answers
32 views
How to post an array of hidden fields to a servlet?
<form>
<c:forEach var="cartitems" items="${cart.items}">
<input type="hidden" name="productid[]" value="${cartitems.products.productsId}">
</c:forEach>
</form>
Above ...
0
votes
3answers
43 views
Form action post to PHP file, then re-post data to external PHP file
Using a HTML form action for membership registration, I want to post the data to a PHP file, then have this PHP file post the identical data to an external PHP file where the information will then be ...
0
votes
2answers
46 views
how to redirect from a form to different page?
I would like to add a form in my page. When I click on the submit button it post some details.
<form action="http://toggletime.net/redirect.php" method="get">
<input type="text" name="url" ...
0
votes
3answers
38 views
Unable to fetch data from textfield using $_POST
I have been not able to fetch data from the textfield 'current_reading'. What can be the issue? every other text and $_POST method are working fine
index page
...
0
votes
0answers
38 views
Merge form fields into one using javascript
I'm a non-programming designer trying to help out a friend and could use a little help with javascript. I have a form which will populate a shopping cart. That form has multiple fields (text fields, ...
0
votes
0answers
31 views
Submitting form with field on hidden page
The issue I have has been discuss on the DataTable forum but the solution does not work in my hands (http://datatables.net/forums/discussion/185/submitting-forms-with-fields-on-hidden-pages/p1).
...
0
votes
2answers
98 views
Post Form using C#
I need to post data to other website using C#.
<form action="http://localhost:2180/PrepDoc.aspx" method="post" target="my_frame" >
<input type="text" name="someText" value="Some Text" ...
0
votes
2answers
61 views
Rails Form Image_Tag VS File_Field_tag
I'm making a profile picture the user can either get it from Linkedin or upload it's own.
When the user get's it from LinkedIn it's shown via an image_tag:
image_tag(Base64::decode64(field_value), ...
0
votes
3answers
27 views
php form submission not working
I have multiple pages that I have made using this exact same method, but for some reason, no matter what I've tried, I can't get certain fields to transfer into the email fields. I get absolutely no ...
0
votes
0answers
4 views
Force.com Site Post Form Data & Redirect to External Site
I have a Force.com site in which I have APEX Forms. I wish to perform the following behaviour from one of my forms.
On a user entering their form data the form action will post the data to an ...
0
votes
2answers
19 views
submit form to new window without address bar
This code will submit a form to a new window
<form action="..." method="post" target="_new">
But is it possible to make the new window start without the address bar and define its size ?
1
vote
2answers
45 views
Multiple the same forms and POST method?
I have multiple instances of the same form (name / email / message fields) on one page. They all share one class ('.contact-form') and different (dynamically generated IDs).
I validate them using ...
0
votes
1answer
18 views
cURL code for registration form to web app not working showing top of page
I have created a cURL php file & included it into my index.php file. Part of the code is displaying at the top of the page. I'm not the best PHP coder, but I believe it is correctly coded. Here is ...
0
votes
2answers
111 views
how to validate form in php?
how to validate this form. when user submits without selecting the options, he must get an alert.
my code:
echo "<form method='post' id='submit' action='checkresult.php'>";
$sql="SELECT * FROM ...
0
votes
2answers
84 views
Ajax Post not working with Form Validation
I tried looking at past posts but didn't see anything that would help my situation. I created an ajax post with validation for my website but for some reason it won't work with the validation. If I ...
0
votes
0answers
102 views
php contact form with jquery style
This is my first post - very very new to this. I have a contact form which opens with jquery by pressing a button. When I submit this form using php, the box closes again so you can only see the 'view ...
0
votes
1answer
30 views
Passing Form Variables Between If Statement
I'm working on a front end submission page for Wordpress that works in a number of steps.
So I've got a form on a page and it's gathering data over a few stages and posting it after each stage.
I ...
0
votes
1answer
58 views
$_POST not getting “name” values from HTML [closed]
I have this simple form:
<form method="POST" action="/scripts/send.php">
<input type="text" name="name" />
<input type="text" name="guests" />
<textarea rows="10" cols="50" ...
1
vote
2answers
36 views
Posting information input to form to another page? [closed]
I am working with wordpress and I want to figure out a way to have a form on one page, and then have the information post to a separate page on the site. I only know html so I don't know how to work ...
0
votes
1answer
41 views
How can I access form POST data from jQuery .submit() event object?
I need to access a hidden field named 'partnerId' in my form data from this js code:
$(document).ready(function() {
showPartnerSettings = function(e) {
e.preventDefault();
var $dialogForm ...
0
votes
1answer
19 views
Form submit does not receive all the values
I have a form. When submi the form
String display_name = request.getParameter("display_name");
String url = request.getParameter("url");
String ip_address=request.getParameter("ip_address");
String ...
0
votes
3answers
47 views
Form information not showing in email $POST [closed]
Here is my form:
<form class="contact" id="contact">
<input type="text" name="name" placeholder="Name" id="contactname" />
<input type="text" name="email" placeholder="Email" ...
0
votes
0answers
13 views
Facebook form submission - intial POST request
I am trying to include a form in my facebook app.
The form works just fine as standalone php page - but the intial facebook POST request
submits the (empty) form when the app loads.
GET works but the ...
-1
votes
1answer
61 views
Why do not many people check posted value whether it is string or array? [closed]
PHP Beginners often write:
if ($_POST['text'] != '') { }
Many programmers:
if (isset($_POST['text']) && $_POST['text'] != '') { }
However, these codes will cause Notice errors when ...
0
votes
1answer
50 views
$_POST array is always empty and server method return GET while I use POST
I use a method="post" form and made a test script.php to check my variables and this is what I get:
array(0) {
}
array(0) {
}
array(0) {
}
Array ( ) GET
this is my html:
<form ...
0
votes
1answer
28 views
changing a variable based on dropdowns that also doesn't refresh page
What I'm trying to accomplish is to have a simple form that has dropdowns with priced items in them. When a user changes a dropdown option it will change the "base price" of the overall product.
^^ ...
-2
votes
0answers
14 views
Twitter Boostrap Post
Can someone please tell me how to allow users to post reviews (anonymous) through a form like
<div class="span4 well">
<form accept-charset="UTF-8" action="" method="POST">
...
0
votes
1answer
51 views
How to post form fields to more than one text file
I am working on a project where I need to submit a form with several fields to several text files.
so it would look something like this.
<?php
$myfile = "data/sitetitle.txt";
if ...
0
votes
0answers
16 views
jQuery Fancybox and pass of variables
i have this
<form id="form" action="javascript:parent.$.fancybox.open({href : 'reserva.php?funcio=ryry', type: 'iframe'});" method="post">
...etc..
this open a fancybox window ...
0
votes
2answers
50 views
jQuery AJAX POST example
I am trying to post my data and put it into a database, but I can't seem to get it to work... any suggestion would be great!
Thanks!
html file (form) http://pastie.org/private/dkdzrrdvet7jq3muxir8g
...
0
votes
2answers
39 views
Django render doesn`t give a view
I`ve got in urls.py redirecting to as_view() method of ClassView after pressing "Search" button
There is an if such as:
def as_view():
if request.method == 'POST':
//sth
elif ...
0
votes
1answer
30 views
remote submit new post to blog by ajax
i use this Ajax post code for submit post to my blog in blogsky blog hosting .
var result = null;
var scriptUrl = "http://www.blogsky.com/cp/weblog/post.bs";
$.ajax({
url: ...
0
votes
1answer
65 views
Pass a variable from one PHP file to another via $.post
I have a contact form that passes the data via jQuery $.post.
JS
$(function () {
$("#contact_form").submit(function (a) {
a.preventDefault();
$.post("<?php echo ...
1
vote
1answer
44 views
Inputs inside Jquery UI Dialog not being sent?
I have many dialog box in my page
<script type="text/javascript">
function paydetail(windID) {
$(".dialog").dialog("destroy");
var dlg = $("#dialog"+windID).dialog({
...
0
votes
1answer
48 views
Can't submit more than 15 values from multi-select dropdown
I'm trying to submit a form which has fields such as country[dropdown], state[dropdown], hotel[multi-select dropdown]. I'm creating concatenated string of these selected values and submitting form ...
0
votes
2answers
30 views
Issue with HTML form
I'm having a slight issue with the following piece of code:
<form action="submit.php" action="POST">
Name: <input type="text" name="name"><br>
<input type="submit" ...
0
votes
1answer
40 views
IE9 form with POST method.. Not submitting data on first submit
I have a simple form with a few inputs containing escaped XML data. When I submit the form (only with IE9), the data is not sent on the first try; however, if I hit the browser back button and submit ...
0
votes
0answers
22 views
Wordpress form $_POST urlencode
I receive the following error when trying to validate a form in wordpress.
This only seams to come up if one of the items in the $_POST array are themeselves an array. Warning: urlencode() expects ...
1
vote
1answer
58 views
PHP Form post always empty
this must be configuration issue and I'm hoping somebody can help. I'm setting up a new project on my localhost and my PHP Post is always empty. Here's the example:
My Form Page:
<form ...
0
votes
2answers
58 views
Yii Submit Form in View page
I just started working with yii and I stumbled upon a problem.
I have a table called "users" and a table called "messages".
I basically want to have a page where I can view a user's details but also ...
-5
votes
4answers
61 views
foreach in form not working properly [closed]
I am a beginner in PHP so I am sorry if the answer is obvious.
Basically, I want users to click the submit button and have the id posted to aaa.php.
<form action='aaa.php' method='get'>`
...
-2
votes
2answers
50 views
How do I insert into a form with over 100 fields
I've created a user form in which once the submit button is pressed I would like to send/insert the data to mysql database adding a new record. The form has over 100 input fields. How can I accomplish ...
0
votes
1answer
211 views
smarter php login form validation
I've started learning PHP and MySQL for a while but I still consider myself a beginner!
I created a simple register form and I also wrote PHP code to validate it...
I want to know if there is a better ...
0
votes
1answer
42 views
php insert to mysql multiple inputs over 100
I've created a user form in which once the submit button is pressed I would like to send/insert the data to mysql database adding a new record. The form has over 100 input fields. How can I accomplish ...
-4
votes
0answers
19 views
PHP - Retreiving an HTML form from a remote website [closed]
I've been working on how to retreive an HTML form from a remote website and I can see that form when using Web Dev Tools for Firefox for example . The thing is , I want to retreive this form from the ...
0
votes
0answers
26 views
Get logged in user information wordpress and default it on field
I have a php form embedded on a wordpress page with a number of input fields:
<?php global $current_user;
get_currentuserinfo();
?>
<form name="nm" action="./submit.php" ...
0
votes
4answers
42 views
PHP Get Form issue
I have the following quote:
<form class="searchform" name="search" id="search" action="<?php echo base_url();?>video/search" method="get" >
<input type="text" ...
1
vote
2answers
23 views
PHP Form not posting all fields
I have a strange issue that I cannot get my head around.
I have the following form and when I click submit I do not GET or POST all fields in the form. Only two fields are being picked up being - ...
0
votes
2answers
62 views
php forms: value=“<?php=$_POST['total_amount']?> vs. value=”<?=$_POST['total_amount']?>
My form is generating an error when I use:
<input type="hidden" name="total_amount" value="<?php=$_POST['total_amount']?>" />
however it works fine when I use:
<input type="hidden" ...






