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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T23:47:19+00:00 2026-05-31T23:47:19+00:00

Consider the following: <?php //daytime_check.php $is_daytime = false; if ($is_daytime) { echo ‘1’; }

  • 0

Consider the following:

<?php
//daytime_check.php
    $is_daytime = false;
    if ($is_daytime) {
        echo '1';
    } else {
        echo '0';
    }
?>

==================================================================================

// javascript/jQuery
$.ajax({
    type: 'POST',
    url: 'daytime_check.php',
    success: function(response) {
        if(response == false) {
            alert('Goodnight, brother');
        } else {
            alert('Day\'s a wastin, brother');
        }            
    },
    error: function() {
        //handle error
    }
});

This is how I have heretofore handled the responses from my AJAX’d PHP scripts. I’m hoping someone out there can give me some hints on a better way, as this current method feels pretty clunky.

Especially clunky is handling the “filtering” of the PHP script’s output on the JS side. For example:

In this case, the response from PHP is going to be a JS var response ='0'. Now one can’t simply use if (!response)... in JS to filter, because apparently !response evaluates to false, while, interestingly, response == false evaluates to true. Something to do with type juggling, I suppose.

Since the only way I can return things from PHP is in text (echo statements), I can’t return proper true/false values to filter on when I get to the JS side. Is there a better way to handle this?

I hope this made at least a little sense.

  • 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-31T23:47:20+00:00Added an answer on May 31, 2026 at 11:47 pm

    You can stil return any type you would like to. Just use JSON response.

    // you can return what ever you want via JSON
    die(json_encode(array(
        'isDateTime' => $is_datetime,
        'message'    => 'Some optional message to display',
        'timestamp'  => time()
    )));
    

    This will output this string:

    {"isDateTime":false,"message":"Some optional message to display","timestamp":1332792739}
    

    And on client side jQuery will parse this response:

    $.ajax({
        type: 'POST',
        url: 'daytime_check.php',
        dataType: 'json',
        success: function(response) {
            if (response.isDateTime) { ... }
            // typeof response.isDateTime == 'boolean'
            // alert(response.message)         
        },
        error: function() {
            //handle error
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please consider the following code, <form action=index.php method=post name=adminForm enctype=multipart/form-data> <input type=hidden name=showtime[] id=showtime_1
Consider the following PHP array: $config= array( Plan => array( Type => dropdown, Options
Consider the following in PHP: $var = 3 * 5 echo $var //15 Is
Consider the following: incl.php <div id='footer'> <?php sleep(10); echo <div class='footer-float'><!-- content --></div>; ?>
Consider the following: wrap callback in anonymous function (works) $('#updateView').change(function(e) { $.post(URL + actions/updateView.php,
Consider the following form containing textfield and submit button: <form method=POST action=<?php isValid();?> class=urln>
Consider the following php code used for HTML output: echo <div id='logo2'> <a href='if(checkLanguage())
Consider the following code: <?php $conn = mysql_connect('localhost', 'username', 'password'); mysql_select_db('database', $conn); ?> This
Consider the following directory structure: ROOT ------ images ............... logo.png ------ includes ............... vars.php
Let's consider following, simplified example: We have 2 tabs withing <rich:tabPanel switchType=ajax> , each

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.