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

  • Home
  • SEARCH
  • 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 8790667
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:42:58+00:00 2026-06-13T22:42:58+00:00

Possible Duplicate: Php pass array to Javascript How to pass PHP array parameter to

  • 0

Possible Duplicate:
Php pass array to Javascript
How to pass PHP array parameter to Javascript Function?

So I’m trying to pull an individual element at random from an array consisting of data pulled from a database. This is a simplified version of the php code.

        function getID() {
                $result = array('1','2','3','4');

                $id = $result[array_rand($result)];
                return $id;
        }

From here, I’m defining a JavaScript variable using the returned ID.

Here’s the weird thing, when I define the JS variable using the passed return $id, the javascript variable is defined as = “Array” instead of the $id data.

IF I change the php code to this:

        function getID() {
                $result = array('1','2','3','4');

                $id = array_rand($result);
                return $id;
        }

The javascript variable is defined as the $id, which is the array key, not the array data.

So I tried changing the php code to this:

        function getID() {
                $result = array('1','2','3','4');

                return $result[0];
        }

But the javascript gets defined as “Array” again.

It’s as if the php won’t take an array marker.

Any ideas here are welcome.

  • 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-13T22:42:59+00:00Added an answer on June 13, 2026 at 10:42 pm

    You can’t directly pass arrays directly from php to javascript. Use json_encode to return your array as Json encoded string.

    function getID() {
       $result = array('1','2','3','4');
    
       json_encode($result);
    }
    

    And in javascript you can do:

    var obj = JSON.parse(jsonFormattedStringThatWasGeneratedByFunctionGetID);
    

    Most browsers support JSON.parse()

    Edit: I’ve misunderstood your question at first but you can still use this method and get desired item on client-side but this is far from perfect solution. I’ll leave this answer as another option.

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

Sidebar

Related Questions

Possible Duplicate: Passing JavaScript Array To PHP Through JQuery $.ajax I'm trying to pass
Possible Duplicate: PHP function with unlimited number of parameters How to pass array as
Possible Duplicate: How to pass a variable / data from javascript to php and
Possible Duplicate: how to pass variables from php page to javascript and display the
Possible Duplicate: How to call a JavaScript function from PHP? I have a php
Possible Duplicate: Parse a JavaScript file through PHP I've been trying to pass a
Possible Duplicate: How to pass value from javascript to php file would something like
Possible Duplicate: Pass a PHP string to a Javascript variable (including escaping newlines) Hy,
Possible Duplicate: How to pass an array via $_GET in php? So I have
Possible Duplicate: How to pass JavaScript variables to PHP? how would I go about

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.