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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T00:18:53+00:00 2026-06-06T00:18:53+00:00

I want to send a Javascript array to PHP using AJAX. This seems very

  • 0

I want to send a Javascript array to PHP using AJAX. This seems very simple code, but I am getting the “No isset” message.

<?php 

if (isset($_REQUEST['activitiesArray'])) {
echo 'YES isset';   
}else{
echo 'No isset';
}
?>

<!DOCTYPE html>
<html>
<head>

<script  src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">


var activities = ["thing1", "thing2", "thing3"];

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

Safari displays the following, which suggests the POST is operating

enter image description here

  • 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-06T00:18:54+00:00Added an answer on June 6, 2026 at 12:18 am

    If you make an ajax request, you should return something that you can use in the js to determine how it went. You also only want to load the response, not the entire page html and all.

    Try this:

    <?php 
    
    if (isset($_REQUEST['activitiesArray'])) {
      echo json_encode(
        array('status' => true)
      );
      exit(0);
    }else{
    echo 'No isset';
    }
    ?>
    
    <!DOCTYPE html>
    <html>
    <head>
    
    <script  src="http://code.jquery.com/jquery-latest.min.js"></script>
    <script type="text/javascript">
      var activities = ["thing1", "thing2", "thing3"];
    
      $.ajax({        
        type: "POST",
        url: "test.php",
        data: { activitiesArray : activities },
        dataType: 'json',
        success: function(data) {
          if(data.status === true) {
            alert('rad');
          }
          else {
            alert('bad');
          }
        }
      });
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to send a javascript array to php using jquery ajax. $.post(controllers/ajaxcalls/users.php, {
i want to send a javascript array to php using jquery ajax. $.post(controllers/ajaxcalls/users.php, {
I want to send array from php to jquery using json. the array in
I have login form which i want to send via ajax using serialize but
If I want to send an array from PHP to JavaScript, I do something
I'm using JSON to send the javascript script code over to a php script
This php code is called through ajax from javascript and should return a numeric
I want to send base64 string through ajax I encoded it through JavaScript function
I want to send an array constructed in javascript with the selected values of
This is how I got my php array to javascript echo 'var daysofweek =

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.