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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:24:24+00:00 2026-05-23T01:24:24+00:00

foreach($data[‘data’] as $data){ $count = $data[‘number’]; } // $data[‘number’]; will return some number like:

  • 0
foreach($data['data'] as $data){
    $count = $data['number'];
}

// $data['number']; will return some number like:

159809
359107
249178
... //10+ numbers

Then, how to put each php foreach value into each jquery ajax? (put every number via a jquery ajax, there will be 10+ ajax calls, and return all the data in one div). Thanks.

<script type="text/javascript">
jQuery(document).ready(function(){
    $.ajax({
        url: "process.php", 
        dataType: "html",
        type: 'POST', 
        data: "items=<?php echo $count; ?>", //each $count value in each ajax
        success: function(data){
            $("#result").html(data);
        }
    });
});
</script>
<div id="result"></div>
  • 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-23T01:24:24+00:00Added an answer on May 23, 2026 at 1:24 am

    If you really want a unique ajax call for each $count value, with the data returning in the #result div:

    <script type="text/javascript">
        $(document).ready(function(){
    
    <?php
    foreach($data['data'] as $data){
        $count = $data['number'];
        ?>
          $.ajax({
            url: "process.php", 
            dataType: "html",
            type: 'POST', 
            data: "items=<?php echo $count; ?>",
            success: function(data){
                $("#result").append(data);
            }
          });
        <?php
    }
    ?>
    
        });
    </script>
    <div id="result"></div>
    

    However, I would highly recommend passing the values as an array and having only one ajax call:

    $count = array();
    foreach($data['data'] as $data){
        $count[] = $data['number'];
    }
    $datacount = implode('-',$count);
    ?>
    
    <script type="text/javascript">
        $(document).ready(function(){
          $.ajax({
            url: "process.php", 
            dataType: "html",
            type: 'POST', 
            data: "items=<?php echo $datacount; ?>",
            success: function(data){
                $("#result").append(data);
            }
          });
        });
    </script>
    <div id="result"></div>
    

    On the server side in process.php, you can explode('-',$_POST['items']) and then foreach through them.

    This is just one other way to accomplish it… It could be json_encoded or many other ways.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have two foreach loop to display some data, but i want to use
I have to insert some data into a MySQL table. The data will be
I have a class like this which stores some data to later make a
Here is some simple Perl to count the number of times a value occurs
I want to make a PHP JSON data foreach, but I met some problem.
foreach ($data['data'] as $data) { echo $data['title'][0]; //echo '<br />'; } this will print
I have a foreach which imports data to our CMS. Now I want to
How can you use the following sample data either with a foreach or while
I have the following code foreach (DataRowView dr in Data) { if (dr ==
I store serialized data in the registry. I want to use a foreach loop

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.