Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a following outputs from MySQL.

Array
(
[0] => stdClass Object
    (
        [id] => 19
        [date] => 2010-10-04 11:00:00
        [course] => Yoga
        [course_id] => 19
        [count(*)] => 2
        [capacity] => 20
    )

[1] => stdClass Object
    (
        [id] => 20
        [date] => 2010-10-04 13:00:00
        [course] => Spin
        [course_id] => 20
        [count(*)] => 1
        [capacity] => 24
    )
...
...

I can get date, course etc, but I am not sure how to get count(*) with PHP.

foreach ($bookingnum as $key => $list){
    echo "<tr valign='top'>\n";
    echo "<td align='center'>".$list->date."</td>\n";
            echo "<td align='center'>".$list->course."</td>\n";
          //  echo "<td align='center'>".$list->count(*)."</td>\n";
         // this is wrong. how to get count(*)?? 
 ....
 ...
share|improve this question
OT: echo $list->course should be echo htmlspecialchars($list->course) – porneL Oct 14 '10 at 9:57
2  
OT: @pomeL how would you know ? Maybe his results already has Entities ... – Hannes Oct 14 '10 at 10:03
Or he may not need them, maybe not using X(HT)ML. I does ever use Entities, thinks that it destroys the beauty of my language. – Frank Oct 14 '10 at 10:38
hey, Accept something! :D – Hannes Jan 7 '11 at 18:22

5 Answers

Modify your base query as

SELECT COUNT(*) AS `total` ...

then you can use this as

$list->total
share|improve this answer
simple but brilliant +1 from me – etbal Oct 14 '10 at 10:07
@shin: Let me know (and please mark as correct) if my answer worked! – fabrik Oct 21 '10 at 6:47

Ha, weird Situation you have there... Okay, since obviously count(*) is not a valid Attribute name you can do 3 things that come to mind:

  1. use $list->{"count(*)"}
  2. change the mysql query to count(*) as count and then use $list->count
  3. change request mode so you get an array as result instead of an stdClass Object
share|improve this answer
$total = count($bookingnum);
foreach ($bookingnum as $key => $list){
    echo "<tr valign='top'>\n";
    echo "<td align='center'>".$list->date."</td>\n";
    echo "<td align='center'>".$list->course."</td>\n";
    echo "<td align='center'>".$total."</td>\n";
}

ops! my fault, wrong answer, i catched the point when i saw fabrik answer +1 to him

share|improve this answer
1  
well, wrong but still +1 from someone xD – Hannes Oct 14 '10 at 9:57

You can apparently get properties with weird names like $list->{'count(*)'}. But ideally, you'll want to change the query. Give the count an alias, like SELECT ... COUNT(*) cnt ..., as it'll be easier to work with. Then you can get $list->cnt instead of resorting to weird syntax.

share|improve this answer

Edit: If you are doing a pagination and want to figure out the total number of records available, you might want to adjust your query with SELECT SQL_CALC_FOUND_ROWS * FROM .. and after your main query is sent , send another query

SELECT FOUND_ROWS() as total_records

However keep in mind SQL_CALC_FOUND_ROWS has performance implications.

Edit: Just realized i just got the question wrong, really silly answer.. taking the first part back :)

share|improve this answer
the count attribute of each result does clearly not represent the count of results itself – Hannes Oct 14 '10 at 9:46
oh, now i understand the question. You already have count() in the query and just want to access it in ur dataset, in that case the simplest way is to just do SELECT blah, blah , count() as num_recs FROM .... – Sabeen Malik Oct 14 '10 at 9:49

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.