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

239
Views
how do I send in all the data as json from the js?

I think I would need parseint to compare the value returned with 30 to then print the specific message. I just can't get past sending $nameLenght from php to JS so I can compare that value with 30.

// php file ---
// check title lenght and print message base on input lenght
if (!empty($title) && !empty($drink) && !empty($pet) && !empty($fictional) && !empty($real)) {
  echo "okay";
  $name = $title . " " . $drink . " " . $pet . " " . $fictional . "  " . $real;
  $nameLenght = strlen($name);
}
else {
  echo "error";
}



// js file----
function sendData(){
  const XHR = new XMLHttpRequest();
  let msgArea = document.getElementById("msg");
  let formData = new FormData(document.getElementById("submit-form"));

  XHR.addEventListener('load', function (event) {
    if (XHR.responseText === "okay") {
      console.log(XHR.responseText);
      clearForm();

      if (lenght >= 30){
        msgArea.innerHTML = "That's a heck of a title!";
      } else {
        msgArea.innerHTML = "That's a cute little title.";
      
    } else {
      msgArea.innerHTML = "Sorry, your title was not processed. Please try again!";
    }
  })
  // checking if error was returned
  XHR.addEventListener('error', function (event) {
    if (XHR.statusText !== "OK") {
      msgArea.innerHTML = "Server Error";
    }
  });
  // this opens the connection and sends the form
  XHR.open('POST', 'process.php');
  XHR.send(formData);

  return;
}
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can respond to the client(js) with a JSON encoded body. And parse the JSON body in JavaScript with the JSON.parse() function.

Right now, you are echoing okay but you need to echo something like this.

PHP

echo json_encode(['status'=>true,'message'=>['name_length'=>strlen($name)]])

JavaScript

let length = JSON.parse(XHR.responseText).name_length

about 4 years ago · Juan Pablo Isaza 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!