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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T08:22:28+00:00 2026-05-15T08:22:28+00:00

Alright so I have a php script which gets results from a DB, and

  • 0

Alright so I have a php script which gets results from a DB, and to get those results I’m using a jQuery script to pull the results via getJSON. It works perfectly but now I want to do something if the php script returns no results (empty).

I tried:

$.getJSON('path/to/script'), {parameter:parameter}, function(data){
 if (data) {
  alert('Result');
 } else {
  alert('Empty);
 }
});

But it’s no good. I’ve tried different things like if (data.length) but still nothing. I’ve noticed that if there is no returned data the callback will never fire at all. So if that’s the case, how do I handle a empty return?

  • 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-15T08:22:28+00:00Added an answer on May 15, 2026 at 8:22 am

    You should check your PHP output to always output some data.

    In my codes I add a success flag to my outputs, like this:

    $result = array (
     'success' => true,
     'data' => $data
    );
    echo json_encode($result);
    

    If I don’t output anything, I put false into success, which makes it easy to validate in jQuery via data.success:

    Example:

    $.getJSON('path/to/script', {parameter:parameter}, function(data){
     if (data.success) {
      alert('Result');
     } else {
      alert('Empty');
     }
    });
    

    If you don’t want to modify your output, you can setup an ajaxError to catch your reading problems.

    Example:

    $.ajaxError(function() {
     alert('error triggered');
    });
    

    P.S.: I dont know if the missing ‘ at the end of this line:

    alert('Empty);
    

    is really missing in your original, if so, your missing a ‘ 😉 >>

    alert('Empty');
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Alright, I recently wrote a ajax push script which had php on the backend
Alright I have a table where I need to get the relevant date from
Alright i have a for loop in php and it generates a group of
Alright have been working to switch to jQuery 1.7's new and improved .on() function
Alright so I have been trying to get all of my separate classes (At
Alright, I have this program to sparse code in Newick Format, which extracts both
Alright, I have my urls set up to rewrite news_item.php?id=1 to blog/1/Title-of-post. This works
Alright so I have a custom page template designed with javascript and php (lets
Alright I have the MYSQL query code setup to pull this information out of
Alright. I have several queries <?php // Make a MySQL Connection mysql_connect(mm.hostname.net, user, pass)

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.