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(*)??
....
...
echo $list->courseshould beecho htmlspecialchars($list->course)– porneL Oct 14 '10 at 9:57