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.

I have this result

Furni Count: Array

My code is

$query2 = mysql_query(
                "SELECT COUNT(DISTINCT id) FROM items
                 WHERE base_item='" . $weekly2['furniture_id'] . "'"
           );

$OwnerCount = mysql_fetch_array($query2);
echo "<tr><td width=\"92%\" >Owner Count: $OwnerCount<form><input type=\"submit\" value=\"Owner Last Online\"></form></td></tr>";
share|improve this question
EDIT: I added these lines and I get the result: 6,6 $string=implode(",",$OwnerCount); echo $string; – Chong Heng Loong Feb 23 at 5:30
Nevermind, I solved it, I added [0] and got the result 6 as I wanted, so my code is $string=implode(",",$OwnerCount); echo $string[0]; – Chong Heng Loong Feb 23 at 5:35

2 Answers

It's because your echoing an array, try print_r($Ownercount); and you should see the array (and the keys).

Example:

echo $Ownercount[0];

Should return the first key in the array (which is probably what you want).

share|improve this answer
Echo $OwnerCount[0]; and I get nothing(Owner Count: ) Print_r($OwnerCount); and I get the result Owner Count: print_r() – Chong Heng Loong Feb 23 at 5:18

you can put an alias on the query, like this :

COUNT(DISTINCT id) as total

and then call

$Ownercount["total"];
share|improve this answer
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING – Chong Heng Loong Feb 23 at 5:19

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.