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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:05:40+00:00 2026-05-16T15:05:40+00:00

I’m using jquery and php for some async job. I’m using $.ajax with beforesend

  • 0

I’m using jquery and php for some async job.
I’m using $.ajax with beforesend, complete, success and error.
I made the async POST request to a php that execute some mysql query and return true (string “1” in fact) if all is ok and false (string “0”).
Back to js I procedd the data return in the success function (or complete?).
Should I have to handle data with

if (data=="1")
  alert("ok")
else
  alert("ko")?

Is this the correct way?

Another question, the error function of $.ajax is for the ajax request itself nad not for the result of the operation?
Thanks


maybe I didn’t explain my self very well.
The ph script do only a few query but there is a possibility that the query will not run for any reason, so i test the execution of the query and return immediately “0” or at end after all query executed correctly, “1”. In javascirpt if I have “0” I have to display an error with alert, if “1” a success message.

So in js I need only to test the returned data and display the alert in the success function of $.ajax?

  • 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-16T15:05:41+00:00Added an answer on May 16, 2026 at 3:05 pm

    For this kind of situation I like to use an object I return as JSON so it’s a bit more flexible:

    $resultObj = new stdClass ();
    $resultObj->success = true;
    $resultObj->msg = '';
    
    //your code here
    //in case of SQL error
    $resultObj->success = false;
    $resultObj->msg = 'There was an error while processing your requests';
    
    //return the response
    $echo json_encode($resultObj);
    

    And then in your jQuery request you can set the dataType property to json so that it will turn the response into an object in case of HTTP success so you can handle the error in the success function:

    $.ajax({
     url      : 'yourpage.php',
     success  : function(data, status, xhr) {
       if (data.success === true) {
          alert('Everything ok');
       } else {
          alert('An error occurred: ' + data.msg);
       }
     },
     error  : function(xhr, status, ex) {
       alert('An error occurred during the communication with the server: ' + xhr.status +' - ' + xhr.statusText);
     },
     dataType : 'json'
    });
    

    As others have said you can have your PHP script return a HTTP 404 error so that instead your error is redirected to the javascript error handler, but I like to keep that error handler for unhandled errors like an untrapped exception or an HTTP failure, and for the errors that I handled on the server side I also handle them on the client-side inside the success function.

    Hope this helps.

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

Sidebar

Related Questions

I am reading a book about Javascript and jQuery and using one of the
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm trying to create an if statement in PHP that prevents a single post
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I have just tried to save a simple *.rtf file with some websites and
I would like to count the length of a string with PHP. The string

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.