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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:43:52+00:00 2026-05-11T02:43:52+00:00

How do I pass have a Javascript script request a PHP page and pass

  • 0

How do I pass have a Javascript script request a PHP page and pass data to it? How do I then have the PHP script pass data back to the Javascript script?

client.js:

data = {tohex: 4919, sum: [1, 3, 5]}; // how would this script pass data to server.php and access the response? 

server.php:

$tohex = ... ; // How would this be set to data.tohex? $sum = ...; // How would this be set to data.sum? // How would this be sent to client.js? array(base_convert($tohex, 16), array_sum($sum)) 
  • 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. 2026-05-11T02:43:53+00:00Added an answer on May 11, 2026 at 2:43 am

    Passing data from PHP is easy, you can generate JavaScript with it. The other way is a bit harder – you have to invoke the PHP script by a Javascript request.

    An example (using traditional event registration model for simplicity):

    <!-- headers etc. omitted --> <script> function callPHP(params) {     var httpc = new XMLHttpRequest(); // simplified for clarity     var url = 'get_data.php';     httpc.open('POST', url, true); // sending as POST      httpc.onreadystatechange = function() { //Call a function when the state changes.         if(httpc.readyState == 4 && httpc.status == 200) { // complete and no errors             alert(httpc.responseText); // some processing here, or whatever you want to do with the response         }     };     httpc.send(params); } </script> <a href='#' onclick='callPHP('lorem=ipsum&foo=bar')'>call PHP script</a> <!-- rest of document omitted --> 

    Whatever get_data.php produces, that will appear in httpc.responseText. Error handling, event registration and cross-browser XMLHttpRequest compatibility are left as simple exercises to the reader 😉

    See also Mozilla’s documentation for further examples

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

Sidebar

Ask A Question

Stats

  • Questions 119k
  • Answers 119k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer As far as I know, In a Windows environment, if… May 11, 2026 at 11:42 pm
  • Editorial Team
    Editorial Team added an answer You can only return once from a function. Build an… May 11, 2026 at 11:42 pm
  • Editorial Team
    Editorial Team added an answer Some (most?) app-servers will reuse the request object for dynamic… May 11, 2026 at 11:42 pm

Related Questions

I need to find a way to call a vb.net function in my aspx
So, i have the following script to use the google maps API, its all
I am trying to assign some javascript variables in a Django template. I am
Does anyone have an explanation of how javascript could do this. Somehow this function

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.