0
votes
2answers
30 views
Rails - RESTful Routing - Add a POST for Member i.e(tips/6)
Hello there,
I'm trying to create some nice RESTful structure for my app in rails but now I'm stuck on a conception that unfortunately I'm not sure if its correct, but if someone …
0
votes
2answers
42 views
post array jquery serialize
I am trying to post a javascript array to a php page. The array has to be associative. My structure looks like this:
<input id="test" value="1" class="settings" />
<input …
1
vote
3answers
47 views
Why am I running out of bytes for the stream while performing an HTTP POST?
This is driving me nuts:
WebRequest request = WebRequest.Create(url);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.C …
0
votes
1answer
32 views
ROR - My logic works, Boolean value doesn’t post
Hello fellas, My logic tests an inventory supply; and the < operator functions fine. How do I assign boolean values to "instock"? (using POST) In this test, under both condition …
0
votes
3answers
58 views
How to get submit button POST Data while submitting by JavaScript form.submit()
Let's say I have this form and script:
<SCRIPT LANGUAGE="JavaScript">
function handleSubmit() {
return false;
}
function Delete(element) {
var is_confirmed …
0
votes
1answer
34 views
Complete POST and redirect to a third party site
I have been struggling with this for three days, I want to do a manual post to a third party provider, that will then take details from the web user (in this case the provider is P …
0
votes
1answer
24 views
Ajax Post method using jquery
<script type='text/javascript'>
$("#cart").click(function() {
var loadUrl = "ajax_redirect.php";
var val = "2";
$.post(loadUrl,
{ page: "cart", data: val },
function(data …
1
vote
1answer
17 views
Amazon S3 POST upload (from iPhone)
A bit of background: I am building an iPhone app with a complementary server backend (written in Rails or possibly Sinatra, but probably not relevant for this discussion). Part of …
1
vote
3answers
64 views
jQuery populate items into a Select using jQuery ajax json, php
I have a select field. I must fill with options taken from a mysql table.
Here is some little php code I have done using codeigniter framework
$idcateg = trim($this->input-> …
0
votes
2answers
21 views
How to pass a .plist file with php?
Can i pass a plist file with php and kind of get it into an array, like the $_POST[''] so i could call $_POST['body'] and get the string that has the <key> body ?
1
vote
3answers
59 views
Why bother using mysql_real_escape_string() since $_POST addes slashes before a quote automatically?
In PHP, $_POST add slashes before a quotation mark automatically, so why bother applying mysql_real_escape_string()? For example, when I input 'rrr in an input field, and I get \'r …
1
vote
3answers
25 views
HttpWebRequest.EndGetRequestStream issue in Silverlight
I am using HTTPWebRequest to post data to a webserver in Silver light 3.0, here is my code
public void MakePostRequest()
{
// Create a new HttpWebRequest obj …
0
votes
1answer
22 views
Upload a file to Google Code Hosting with PHP and fsockopen().
Hi,
Google Code Hosting has the ability to upload files to it remotely. I've been trying to program a script in PHP which uploads files to my account. Here's the script itself:
& …
0
votes
0answers
35 views
IE doesn’t wait for result of $.post(
Hi!
I'm developing an upload form. It works fine with Firefox, but not with IE.
Here is the code:
if(hasError == false) {
$(this).hide();
$("#uploadForm").append('show an …
1
vote
2answers
32 views
Rails: Receive POST from External Form
I have a form on another website (using a different backend) that I want to be able to POST to my Rails application (on a different domain).
How do I generate a valid authenticit …
