Passing JavaScript array to PHP through jQuery $.ajax

PhpJavascriptJqueryAjax

Php Problem Overview


I want to manipulate a JavaScript array in PHP. Is it possible to do something like this?

$.ajax({
       type: "POST",
       url: "tourFinderFunctions.php",
       data: "activitiesArray="+activities,
       success: function() {
            $("#lengthQuestion").fadeOut('slow');
       }
    });

Activities is a single dimensional array like:

var activities = ['Location Zero', 'Location One', 'Location Two'];

The script does not complete when I try this... How can I fix it?

Php Solutions


Solution 1 - Php

data: { activitiesArray: activities },

That's it! Now you can access it in PHP:

<?php $myArray = $_REQUEST['activitiesArray']; ?>

Solution 2 - Php

You'll want to encode your array as JSON before sending it, or you'll just get some junk on the other end.

Since all you're sending is the array, you can just do:

data: { activities: activities }

which will automatically convert the array for you.

See here for details.

Solution 3 - Php

You need to turn this into a string. You can do this using the stringify method in the JSON2 library.

http://www.json.org/

http://www.json.org/js.html

The code would look something like:

var myJSONText = JSON.stringify(myObject);

So

['Location Zero', 'Location One', 'Location Two'];

Will become:

"['Location Zero', 'Location One', 'Location Two']"

You'll have to refer to a PHP guru on how to handle this on the server. I think other answers here intimate a solution.

Data can be returned from the server in a similar way. I.e. you can turn it back into an object.

var myObject = JSON.parse(myJSONString);

Solution 4 - Php

I know it may be too late to answer this, but this worked for me in a great way:

  1. Stringify your javascript object (json) with var st = JSON.stringify(your_object);

  2. Pass your POST data as "string" (maybe using jQuery: $.post('foo.php',{data:st},function(data){... });

  3. Decode your data on the server-side processing: $data = json_decode($_POST['data']);

That's it... you can freely use your data.

Multi-dimensional arrays and single arrays are handled as normal arrays. To access them just do the normal $foo[4].

Associative arrays (javsacript objects) are handled as php objects (classes). To access them just do it like classes: $foo->bar.

Solution 5 - Php

I should be like this:

$.post(submitAddress, { 'yourArrayName' : javaScriptArrayToSubmitToServer },
  function(response, status, xhr) {
	alert("POST returned: \n" + response + "\n\n");
  })

Solution 6 - Php

Use the JQuery Serialize function

http://docs.jquery.com/Ajax/serialize

> Serialize is typically used to prepare > user input data to be posted to a > server. The serialized data is in a > standard format that is compatible > with almost all server side > programming languages and frameworks.

Solution 7 - Php

This worked for me:

$.ajax({
	url:"../messaging/delete.php",
	type:"POST",
	data:{messages:selected},
	success:function(data){
	 if(data === "done"){
		   
	 }
	 info($("#notification"), data);
	},
	beforeSend:function(){
		 info($("#notification"),"Deleting "+count+" messages");
	},
	error:function(jqXHR, textStatus, errorMessage){
		error($("#notification"),errorMessage);
	}
});

And this for your PHP:

$messages = $_POST['messages']
foreach($messages as $msg){
    echo $msg;
}

Solution 8 - Php

Use the PHP built-in functionality of the appending the array operand to the desired variable name.

If we add values to a Javascript array as follows:

acitivies.push('Location Zero');
acitivies.push('Location One');
acitivies.push('Location Two');

It can be sent to the server as follows:

$.ajax({        
       type: 'POST',
       url: 'tourFinderFunctions.php',
       'activities[]': activities
       success: function() {
            $('#lengthQuestion').fadeOut('slow');        
       }
});

Notice the quotes around activities[]. The values will be available as follows:

$_POST['activities'][0] == 'Location Zero';
$_POST['activities'][1] == 'Location One';
$_POST['activities'][2] == 'Location Two';

Solution 9 - Php

This is because PHP reads your value as a string. If I don't want to pass my data as an object (like in the previous answers, which are also fine), I just do this in my PHP:

 $activitiesString = $_POST['activitiesArray'];
 $activitiesArray = (explode(",",$activitiesString));

The last line splits string into bits after every comma. Now $activitiesArray is also an array. It works even if there is no comma (only one element in your javascript array).

Happy coding!

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionkrxView Question on Stackoverflow
Solution 1 - PhpValentin GolevView Answer on Stackoverflow
Solution 2 - PhpJerod VenemaView Answer on Stackoverflow
Solution 3 - PhpJames WisemanView Answer on Stackoverflow
Solution 4 - Phplu1sView Answer on Stackoverflow
Solution 5 - Phpmasterdany88View Answer on Stackoverflow
Solution 6 - PhpGazzerView Answer on Stackoverflow
Solution 7 - PhpI.TygerView Answer on Stackoverflow
Solution 8 - PhpchelistaView Answer on Stackoverflow
Solution 9 - PhpHawthornView Answer on Stackoverflow