Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following code shows an array of records in the $rows array from the MySQL query. I have added also an if statement to check if the $rows array turns up empty, but it is not working.

$rows = array();

$result1 = mysql_query("SELECT * FROM TestPhase where Pid<10", $db) or die("cannot select");
while($row = mysql_fetch_array($result1)) {
  $rows []= array(
    'id' => $row['id'],
    'parent' => $row['parent'],
    'name' => $row['name'],
  );

}


if($rows == ""){
    echo "No Data";

    }

This if statement is not working. How do I check if the array returns empty and post the echo "No Data".

How would I check to see if the array is empty in javascript? I have place the $rows array in a var treeData.

if (treeData) is empty{
$("button").hide();
     }

How do I check if treeData is empty to hide the button.

share|improve this question
How did you place the data from php into javascript? With json or from php? – Awemo Sep 25 '12 at 15:20
with json encode – user1684586 Sep 25 '12 at 15:28

5 Answers

up vote 5 down vote accepted

PHP
Simply use empty(), i.e.

if(empty($rows)){
    echo 'No Data';
}

Alternatively you could also use count(), i.e.

if(count($rows) < 1){ // or if(count($rows) === 0)
    echo 'No Data';
}

JavaScript
You can use the length property

if(treeData.length == 0){
    $("button").hide();
}
share|improve this answer
Thanks this worked great. But please see the updated question. How do I do this in javascript? – user1684586 Sep 25 '12 at 15:06
1  
See the updated asnwer ;-) – Havelock Sep 25 '12 at 15:19
Thanks this worked like a charm :) – user1684586 Sep 25 '12 at 15:29

Use count to check

if(!count($rows)){
    echo "No Data";
}

Using JavaScript, here is the example

var arr = new Array('one', 'two', 'three'); //assume you have list of values in array
if(!arr.length){ //if no array value exist, show alert()
   alert('No Data');
}
share|improve this answer
Thanks this worked great. But please see the updated question. How do I do this in javascript? – user1684586 Sep 25 '12 at 15:08
I updated my answer. Check above. – Muthu Kumaran Sep 25 '12 at 15:53

You can't treat an array like a string (i.e. $rows == ""). Use count() or empty() instead:

if(count($rows) == 0)
{
    echo "No Data";
}
share|improve this answer

Use empty:

if( empty( $rows) ) { ... }
share|improve this answer
if ( count( $rows ) == 0 ) {...}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.