This is what I want and how I want it layed out
<?php
# The title of your report
$reportdata["title"] = "Staff Sales Report";
# The description of your report
$reportdata["description"] = "Staff Sales Report";
# Header text - this gets displayed above the report table of data
$reportdata["headertext"] = "";
# Report Table of Data Column Headings - should be an array of values
$reportdata["tableheadings"] = array("Staff Member","Total Products Sold","Total Monthly Sales");
# Report Table Values - one of these lines for each row you want in the table
# should be an array of values to match the column headings
$reportdata["tablevalues"][] = array("Staff Name 1",Number of Product Sales","$Grand Total Sales");
$reportdata["tablevalues"][] = array("Staff Name 1",Number of Product Sales","$Grand Total Sales");$reportdata["tablevalues"][] = array("Staff Name 1",Number of Product Sales","$Grand Total Sales");
# Report Footer Text - this gets displayed below the report table of data
$data["footertext"] = "Staff Sales Report";
?>
I am just not sure what fields I need to enter from our sql tables to pull that information and to go about entering that info into the above code. Plus I would like to generate this report based on the the month I want.