Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

124
Views
Ajax method to post score achieved within Phaser game

I have a Phaser game that runs just fine. I need to submit score to my server which has a action that can accept the score. Is this possible?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Hello you can try this :

var my_score = 20; 

function submit_score(my_score) {
    var fd = new FormData();
    fd.append("my_score", my_score);
    var xhr = new XMLHttpRequest();

    xhr.open('POST', 'post.php', true);
    xhr.send(fd);

}

here is the PHP file

<?php 

    $score = $_POST["my_score"];

    echo $score;

?>
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!