Jump to content

Problem displaying results of count query


gavin1512

Recommended Posts

Good Afternoon,

 

I am having a slight issue displaying the results of a count query. I have tested it in the SQL section of PHPmyAdmin and the query runs fine and gets 5 results and the appropriate counts.

 

Here is my SQL Query~:

 

 

$query="select COUNT(orderid),employee.username from  orders, employee where employee.username = orders.username AND `date` BETWEEN '" . $date1 . "' AND '" . $date2 . "' Group BY orders.username";
                $result=@mysql_query($query,$connection)
                or die("Unable to perform query<br>$query");

 

 

 

I am displaying the results with:

 

   

<?php
    while($row= mysql_fetch_array($result))
{
?>
    <tr>
      <td> </td>
      <td><?php echo $row['employee.username']?></td>
      <td><?php echo $row['COUNT(orderid)'] ?></td>
      <td> </td>
      <td> </td>
    </tr>
      <?php
}
?>

 

 

I have tried removing the date function but that does not seem to be the problem.

 

Any assistance would be much appreciated

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.