SireJoe Posted March 5, 2008 Share Posted March 5, 2008 Ok, so Heres what I am tryin to do: $ARCH0= mysql_query("SELECT IFNULL(descr, 'Total') AS descr, Clicks.idnum, clicks FROM Clicks, Partners WHERE Clicks.idnum=Partners.idnum GROUP BY Clicks.idnum, descr WITH ROLLUP"); echo "<table border='1' width='700' align='center' bgcolor='white' class='style4'> <tr> <th scope='col' width='10%' bgcolor='#666666'>#</th> <th scope='col' width='10%' bgcolor='#666666'>ID</th> <th scope='col' width='60%' bgcolor='#666666'>Titles</th> <th scope='col' width='15%' bgcolor='#666666'>Clicks</th> </tr>"; while ($row = mysql_fetch_array($ARCH0)) { if($cols == 0){ echo "<tr>\n"; } printf("<td align='center' bgcolor='$bg'>$int</td>"); printf("<td align='center' bgcolor='$bg'>%s</td>", $row[0]); printf("<td bgcolor='$bg'>%s</td>", $row[1]); printf("<td align='center' bgcolor='$bg'>%s</td>", $row[2]); $cols++; $int++; switch($bg) { case '#FFFFFF': $bg= '#CCCCCC'; break; case '#CCCCCC': $bg= '#FFFFFF'; break; } if($cols == $display){ echo "</tr>\n"; //$rows++; $cols = 0; } } if($cols != $display && $cols != 0 && $rows != 0){ $neededtds = $display - $cols; for($i=0;$i<$neededtds;$i++){ echo "<td></td>\n"; } echo "</tr></table>"; }else { echo "</tr>\n</table>\n"; } I get: (edited down) 90 Total 10000033 1 91 mrdeeznutz 10000034 1 92 Total 10000034 1 93 sexychanels.com 10000035 1 94 Total 10000035 1 95 Glamour Angels 10000036 1 96 Total 10000036 1 97 Total - 1 Wow, that was a pain in the arse Ok, so now, WHY oh why is my last total column NOT totalling my last row? Thanks for the help! Link to comment https://forums.phpfreaks.com/topic/94409-table-total-rollup-nogo/ Share on other sites More sharing options...
SireJoe Posted March 5, 2008 Author Share Posted March 5, 2008 Anyone willing to help?? Link to comment https://forums.phpfreaks.com/topic/94409-table-total-rollup-nogo/#findComment-483669 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.