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 8451253
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:11:17+00:00 2026-06-10T11:11:17+00:00

In jquery I can do this myAray=[‘abc’, ‘123’, ‘more’]; $.post(‘myscript.php’, {data:myAray}, function(data){ alert(data); });

  • 0

In jquery I can do this

myAray=['abc', '123', 'more'];
$.post('myscript.php', {data:myAray}, function(data){
    alert(data);
});

How can I do the same thing using plain javascript ? I want to send an array to my php script using POST method. I have found so many examples but all of them are jquery related.

Thanks in advance.

  • 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-06-10T11:11:18+00:00Added an answer on June 10, 2026 at 11:11 am

    You will have to use XMLHttpRequest and serialize the array yourself:

    function ajax(myArray) {
    
        var xmlHTTP;
    
        if (window.XMLHttpRequest) { 
            xmlHTTP = new XMLHttpRequest();
        } else { 
            xmlHTTP = new ActiveXObject("Microsoft.XMLHTTP");
        }
    
        xmlHTTP.onreadystatechange = function () {
            if (xmlHTTP.readyState == 4 && xmlHTTP.status == 200) {
                // do whatever it is you want to do
            }
        }
    
        //Serialize the data
        var queryString = "";
        for(var i = 0; i < myArray.length; i++) {
            queryString += "myArray=" + myArray[i];
    
            //Append an & except after the last element
            if(i < myArray.length - 1) {
               queryString += "&";
            }
        }
    
        xmlHTTP.open("POST", "www.myurl.com", true);
        xmlHTTP.setRequestHeader("Content-type", "application/x-www-form-urlencoded")
        xmlHTTP.send(queryString);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I this PHP function include in jquery .html? PHP function: function trim_text($string,
I can do this jQuery.fn.validate = function(options) { var defaults = { validateOPtions1 :
How can I do this in Javascript/jQuery from PHP? I am trying to populate
Can this be done quickly in jQuery before I start looping through them? Or
I'm looking for something similar to this: Active navigation with jQuery - can't apply
Actually I'm looking for a jQuery plug-in that can handle this: there is a
how can I avoid this in jQuery: $(this).parents(.node-inner).children().children().children(); I tried: $(this).parents(.node-inner).children(.className); but it doesn't
how can I make this jquery script close all previously opened children when entering
How can I achieve this behaviors onclick with jquery : default state: <a href=something.html>Anchor</a>
How can I sort this foreach loop with jQuery? I will sort on id

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.