vote up 1 vote down star
1

I am trying to use an ajax 'POST' call through the jquery $.ajax function to send data to a php file. For some reason the callback is a success but the data is not getting to the php file. Here is an example of the code:


In JS file:
$.ajax({ type: "POST",
        url: "setData.php",
        data: "myPOSTvar=myData"
        success: function(){ alert("Data Saved"); } 
       });

In php file:


$var = $_POST['myPOSTvar']

...

$var ends up with a default value instead of the data it is sent.

Any ideas?

Sorry about the syntax errors...at work right now and don't have my code in front of me...the syntax is all correct in the actual script, just typed to quick when posting here...

flag

Please repost your PHP code as I can't see anything. – Ionut G. Stan Jan 29 at 14:38
If a request is made (and it does, because you say the php code is triggered), the problem is likely to be on your php. – Kobi Jan 29 at 14:52
It is getting a success, I just typed it wrong here... – Paul Jan 29 at 15:17

3 Answers

vote up 2 vote down check

Try this and see if you get any info.

$.post("setData.php", { myPOSTvar: "myData" },
    function(data){
        alert("Data saved");
});
link|flag
vote up 0 vote down

I doubt it's a success, the url should be a string : url: "setData.php" .

link|flag
vote up 0 vote down

I really doubt that piece of JS code is working as it should. POST and setData.php should be enclosed with quotes. Right now you should get some errors because "POST" variable is not defined and then because you're accessing a "php" property on a non existent object "setData".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.