post

Input inside Jquery UI Dialog not being sent??

The input fields in my dialog box aren't being posted, and i'm not sure why... i've tested it on mac firefox and safari, and windows IE & firefox with the same results, so i don't think it's the browser, and the fields post fine if I disable the dialog box. I've re-read the jquery ui docs and can't find what i'm doing wrong... It seems...

Jquery post callback function not working

Hi, I'm having trouble getting my callback function to work in post: I've got this in a click function. I've tried both $().click(function(e){..} and $().livequery('click', function(e) {. e.preventDefault(); $.post("test.php", {}, function(data) { alert("bang"); //doesn't register }); alert("bom"); //works fine test.php: echo "bah"...

Help to edit the Recent Posts Wordpress widget to diplay in all 3 languages at once

Site link: http://nuestrafrontera.org/wordpress/ I want the feed of recent post titles to show in the sidebar for all 3 languages, separated by language. So, for example, under Recent Posts the sidebar would have "English" and then the latest 3 posts in English, then "Español" and the latest 3 in Spanish and then French. All in a list i...

Why aren't jQuery and cycle working in Wordpress?

Hi! I am really struggeling with this problem.. I want to have a slideshow of my featured post via cycle in my wordpress index.php, but well.. wordpress wont. First I enqueued cycle and my script in the header: <?php wp_enqueue_script('jquery.cycle.all.min', '/wp-content/themes/black1/js/jquery.cycle.all.min.js', array('jquery'));...

Jquery Post Data

Hi, I need to insert/update data by using link or image I need a code how to call post data using jquery ! < a href="some.asp" onClick="someaction, value to send" > Link Please help ...

Is it possible to see the data of a post request in Firefox or Chrome?

How can I intersect the post data in FF or Chrome is sending via configuration, extension or code? (Code part makes this programming related. ;) I currently use Wireshark/Ethereal for this, but it's a bit difficult to use. ...

browser autocomplete/saved form not work in ajax request

Hi, Its really hard to search the any combination of keywords in search engine about this because it used by most popular developer wanted a custom autocomplete by ajax. Most developer search about the custom autocomplete to get result from db by ajax or about how to disable browser autocomplete due to security reason or they wantted t...

html post form action not specifically spell out php file?

I have a post html form, and the action is index.php, which is the websites main page. I never actually have index.php in the address bar, since links to "/" go to it, and even if I did, it would be website.com/home(/), since I use rewrite rules. So basically, the user should never see index.php. However, the form submit doesn't work if ...

Amazon S3 - Posting form using html and PHP content-disposition problem

I am having trouble putting files onto my S3 account using http post. Everything is working great, but I want the key and filename to be different. I'm specifying the key just fine and my policy doc is working fine too. I include this line in my policy doc ["starts-with", "$Content-Disposition", ""] and this is the input for my Conten...

$_SESSION up all $_POST variables?

Is there any way to do some kind of while() for each post variable and session it up... like in mysql while($row=mysql_fetch_array($result)){ echo($row['name']; } But to get this result with the $_POST while($_POST){ $_SESSION['BLA'] = $_POST['BLA']; } Thanks in advanced :) ...

Add missing final boundary of HTTP request with Apache / PHP?

Hello, I receive HTTP Post requests from an application, which is already deployed on mobile phones. This application worked fine the last months, but now PHP started complaining with respect to a POST file upload: UPLOAD_ERR_PARTIAL via HTTP 1.0 and PHP5. (After a crash the server had been set up again with new Apache and PHP versions,...

Google App Engine and google authentication with redirect and HTTP POST

I have a form and I need to send the content to the server. I use google authentication because only authorized people can send to the server. The form is somthing like this: <form action="/blog/submit" method="post"> ... </form> The authentication is needed only during the submit, not entering the form page. So in the submit contro...

How to access a $_POST item through the following array kind of syntax?

If i send four POST variables, but the second one I dont know that the name="" tag will be; how can I access it? Can i use $_POST[1] or not? ...

iPhone > Submitting a web form, handle cookies..

Hey all, I'm not at all sure where to get started with the following. Bascially the scenario Is, from my iPhone app I want to be able to login to a web form (via username/password combo) and perform another action. I want the process to be able to handle session persistence via cookies. My first thoughts were to look at going down the ...

How do you force a web browser to use POST when getting a url?

How do you force a web browser to use POST when getting a url? ...

How do you past post data without the name value for inputs?

passing post data using cURL requires that the name of the input. However, I was wondering how can you do it if the input was not assigned a name? curl -d "user=foobar&pass=12345&id=blablabla&ding=submit" http://www.formpost.com/getthis/post.cgi ...

How do I send the jsessionid via POST using hidden inputs when cookies are disabled in JSP?

Is there any way to send JSESSIONID via hidden inputs? Something like <input type="hidden" name="JSESSIONID" value="<%= session.getId() %>"/> I tried everything but nothing seems to be working. It works if I directly access the other page with www.example.com/app/q.jsp;jsessionid=CC7A1A07E117B66F4C5D8910F4F138F3 ...

jquery serialize post

I have a div with elements below it that I am serializing. I am then posting that data to another page. The problem I have is I want to add something to the post but am unsure how. For example I have this: var tabs_sorted = $("#sortable_tabs").sortable('serialize'); $.post(DOC_ROOT+"helpers/update_tab_position.php", tabs_sorted); It t...

PHP quiz send data to next page

ok, i'm trying to do a quiz...all good by now. but when i'm trying to send the collected data(radio buttons values) through pages i can't get the logic flow. I have the main idea but i can;t put it into practice. i want to collect all radio values create an array containing this values serialize the array put the serialized array into ...

How to use jQuery to show a page returned from a POST in a dialog?

I'm wanting to use the jquery dialog to open a modal dialog, and in it display the returned page from my server that results from a POST. How can I do this? Right now I've got something like this: var ser = Form.serialize(); $.post("myform", ser, function(result) { $j(result).dialog({title: "Add Shift"}); }); But it's shows 2 dialo...