If I were to want the report to show at the top of the page instead of under the Gather & Filter data table, can someone provide the code I need to move.
I thought it was
Code:
if ($timeframe_sort == 'desc') {
krsort($sr->timeframe);
}
// determine whether or not there are taxes
$display_tax = ($sr->grand_total['goods_tax'] > 0 ? true : false);
// DEBUG
//$display_tax = true;
// determine if lines should have the rollover effect
$rollover = "";
if ($output_format == 'display') {
$rollover = 'onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)"';
?>
<tr>
<?php if ($_GET['doCustInc']== 'on' || $_GET['doProdInc']== 'on') {
// if reporting for a specific product, build up a string of product descriptions
$i = 0;
$header_string = "";
$include_products = explode(",",$_GET['prod_includes']);
if ($_GET['doProdInc']== 'on' && DISPLAY_TABLE_HEADING_PRODUCTS) {
foreach($include_products as $cID) {
$tempAry = $db->Execute("select distinct pd.products_name from " .
TABLE_PRODUCTS_DESCRIPTION . " pd where products_id = " . trim($cID));
if ($i == 0) {
$header_string = $tempAry->fields['products_name'] ;
}........
To the top by the </head> but the <tr> without a preceding <table> tells me I must have this wrong.
Thanks for your help!
Bookmarks