Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7404069
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:12:09+00:00 2026-05-29T05:12:09+00:00

I have this AJAX: $.ajax({ url : get_base_url() + ‘update’, type : ‘POST’, async

  • 0

I have this AJAX:

                $.ajax({
                    url : get_base_url() + 'update',
                    type : 'POST',
                    async : false,
                    data : json_positions,
                    dataType : 'html',
                    success : function(data) {
                        console.log(data);
                    },
                    error : function(jqXHR, textStatus, errorThrown) {
                        console.log('error:');
                        console.log(jqXHR);
                        console.log(textStatus);
                        console.log(errorThrown)
                    }
                });

data sent is:

json_positions

which is a string like this:

{"new_positions" : [{ "id": "2", "position": "0"},{ "id": "5", "position": "1"},{ "id": "4", "position": "2"}]}

I want to decode json_positions using json_decode() in a PHP page but it seem that tdata is not sent to the php page because when i try to:

print_r($_POST);

it returns an empty array using console.log(data).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T05:12:09+00:00Added an answer on May 29, 2026 at 5:12 am

    Well your code is okay, no need to change anything. But it’s how you pass your data.

    data sent is: json_positions which is a string like this: …

    You should not pass it like string. It should be an object like you defimed it:

    {"new_positions" : [{ "id": "2", "position": "0"},{ "id": "5", "position": "1"},{ "id": "4", "position": "2"}]}
    

    Make you sure you pass an object, not string, e.g. don’t add any quotes around it etc. Then it’s going to work fine.

    EDIT

    As per jQuery documentation for $.ajax data parameter:

    dataObject, String
    Data to be sent to the server. It is converted to a query string, if not already a string. It’s appended to the url for GET-requests. See processData option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the traditional setting (described below).

    So your data should be a query string or an object.

    In your case I recommend to use object. Like with this code:

    var json_positions = {
        new_positions: []
    };
    $.each(result, function(key, value) {
        var value_splitted = value.split('-');
        json_positions.new_positions.push({
            id: value_splitted[1],
            position: key
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this ajax call at the moment: $.ajax({ url: misc/sendPM.php, type: POST, data:
I have a jQuery AJAX call with type:'GET' like this: $.ajax({type:'GET',url:'/createUser',data:userId=12345&userName=test, success:function(data){ alert('successful'); }
I have this function function get_last(){ $.ajax({ url:'fronta.php?get_last&last=1', success:function(data) { var last = parseInt(data);
I have a page, with ajax URL on it, ofcourse this page is applying
How do I preview a url using ajax? I have seen this done with
How can I modify this: /services/type/single_dwelling/ to this: /ajax/services/single_dwelling/development Currently I have: linkUrl =
So I have this: <?php echo ' <script> $(function(){ $("a#yeah").click(function(){ $.ajax({ url: "ajax.php?action=yeah&id='.$id.'", success:
I have this function $.ajax({ url: aurl, method: 'GET', beforeSend: function (req) { req.setRequestHeader('Authorization',
I have this javascript that pulls some data via an ajax request the method
I have this ajax call for loading a selection of data in xml. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.