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

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.