Repeating Table

Hey all,

First off thanks for offering this forum for those of us trying to come to grips with this powerful language.\

I am trying to create a PHP report that queries a MySQL DB and returns lists of matching records, ordered by a date field, with each date’s records in it’s own table.

I have gotten quite far, and all works as it should except, I need a main and sub heading above each table in addition to the column headings.

My current code displays all the headings first then the table like such:

HEADING1.1
HEADING1.2
HEADING2.1
HEADING2.2
table 1 column headings
table 1 data 1
table 1 data 2
table 2 column headings
table 2 data 1
table 2 data 2
table 2 data 3

What I need is:

HEADING1.1
HEADING1.2
table 1 column headings
table 1 data 1
table 1 data 2

HEADING2.1
HEADING2.2
table 2 column headings
table 2 data 1
table 2 data 2
table 2 data 3

My code is as follows:

[php]<?php $tmpdate = ''; ?>

<?php do { if ($tmpdate != $row_rsoffence['courtdate']) { ?>

Register of Control Documents - <?php echo $_SESSION['laName']; ?>

<?php echo "COURT: POTCHEFSTROOM NO:C COURTDATE " . $row_rsoffence['courtdate'] ; ?>

<table width="950px" border="1" cellpadding="1" cellspacing="1" >
  <tr>
 
  <td>Court Date</td>
   <td>Officer</td>
    <td>Notice / Summons No.</td>
    <td>Name of Accused</td>
     <td>How Disposed Of</td>
      <td>Signature: Remove Control Doc</td>
      
  </tr>
<?php } ?>
    <tr>
    <td><?php echo $row_rsoffence['courtdate']; ?></td>
     <td><?php echo $row_rsoffence['officerno']; ?></td>
      <td><?php echo $row_rsoffence['noticeno']; ?></td>
       <td><?php echo $row_rsoffence['offenderforenames'] . ' ' . $row_rsoffence['offendername'] ; ?></td>
         <td></td>
         <td></td>
         
      
     
      
    </tr>
	<?php $tmpdate = $row_rsoffence['courtdate']; ?>
    <?php } while ($row_rsoffence = mysql_fetch_assoc($rsoffence)); ?>
</table>
[/php]

You should draw a picture on how you want the table to look, I’m having a hard time trying to figure out the look you want.

What you want to happen seems really easy, but I need a better visual then what you provided.

HI Topcoder,

Thanks for the response.

I have taken a screen shot of my current results:

tlokwe.lightspeedtraffic.com/img/tablesample.png

sorry can’t post images or links.

As you can see, I simply need the second table heading moved to over it’s own table.

I really cannot see why my code is not working.

Thanks again

Dave

Thanks,

Now can you right click on that screen shot that you linked to and click view source and paste the HTML Source here…

Here you go:

<!doctype html>

<html>
<head>
<script type="text/javascript">
<!--

function updateClock ( )
{
  var currentTime = new Date ( );

  var currentHours = currentTime.getHours ( );
  var currentMinutes = currentTime.getMinutes ( );
  var currentSeconds = currentTime.getSeconds ( );

  // Pad the minutes and seconds with leading zeros, if required
  currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
  currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;

  // Choose either "AM" or "PM" as appropriate
  var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";

  // Convert the hours component to 12-hour format if needed
  currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;

  // Convert an hours component of "0" to "12"
  currentHours = ( currentHours == 0 ) ? 12 : currentHours;

  // Compose the string for display
  var currentTimeString = currentHours + ":" + currentMinutes + ":" + currentSeconds + " " + timeOfDay;

  // Update the time display
  document.getElementById("clock").firstChild.nodeValue = currentTimeString;
}

// -->
</script>
<meta charset="utf-8">
<title>LightSpeed | Register of Control Documents</title>
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="ScriptLibrary/json2.js"></script>
<script type="text/javascript" src="ScriptLibrary/gridExport.js"></script>
<script type="text/javascript">
</head>

<body onload="updateClock(); setInterval('updateClock()', 1000 )">

<div id="wrapper">
 <div id="header">
	<div id="logo"><img src="Images/LS-LOGO.png" width="190" height="140" alt=			"logo">
	</div>
	<div id="headerText">Traffic Infringement Management</div>
  </div>  <div id="Content">
       <p>  <span style="text-align: center; font-size: 18px;"> Register of Control Documents - Tlokwe City Council</span></p>
   
<p> COURT: POTCHEFSTROOM     NO:C     COURTDATE 2014-01-07</p>
</table>
    <table width="950px" border="1" cellpadding="1" cellspacing="1" >
      <tr>
     
      <td>Court Date</td>
       <td>Officer</td>
        <td>Notice / Summons No.</td>
        <td>Name of Accused</td>
         <td>How Disposed Of</td>
          <td>Signature: Remove Control Doc</td>
          
      </tr>
   
  
  
     
        <tr>
        <td>2014-01-07</td>
         <td>5308</td>
          <td>5307146252014597</td>
           <td>JOHANNES GROBLER</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-07</td>
         <td>5308</td>
          <td>5307134252014573</td>
           <td>FREDERICK STEVENUS SCHOEMAN</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-07</td>
         <td>5308</td>
          <td>5307135252014575</td>
           <td>TUKISI PHANUEL MOTLHATSWI</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-07</td>
         <td>5308</td>
          <td>5307147252014599</td>
           <td>BELENDA KOTZE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-07</td>
         <td>5308</td>
          <td>5307204252014713</td>
           <td>JACOB GOITSEMANG MECWEAWERE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-07</td>
         <td>5308</td>
          <td>5307136252014577</td>
           <td>STENLY EVEN WARREN</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-07</td>
         <td>5308</td>
          <td>5307145252014595</td>
           <td>RUTHAN TSHIKORORO</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		            <p>  <span style="text-align: center; font-size: 18px;"> Register of Control Documents - Tlokwe City Council</span></p>
   
<p> COURT: POTCHEFSTROOM     NO:C     COURTDATE 2014-01-14</p>
</table>
    <table width="950px" border="1" cellpadding="1" cellspacing="1" >
      <tr>
     
      <td>Court Date</td>
       <td>Officer</td>
        <td>Notice / Summons No.</td>
        <td>Name of Accused</td>
         <td>How Disposed Of</td>
          <td>Signature: Remove Control Doc</td>
          
      </tr>
   
  
  
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307257252014819</td>
           <td>ADRIANO MBINO CHUNGUANE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307255252014815</td>
           <td>STEPHEN BOTMAN</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>3737</td>
          <td>5307052252014409</td>
           <td>ANDRE VISAGIE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>3737</td>
          <td>5307045252014395</td>
           <td>MOLATLHEGI STEPHEN OTSWAKWA</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>3737</td>
          <td>5307043252014391</td>
           <td>JOHAN G BEYERS</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>3737</td>
          <td>5307042252014389</td>
           <td>NTSEKELELO HECTOR SIGWILI</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>3737</td>
          <td>5307041252014387</td>
           <td>CINDY ANGELIQUE DE BRUIN</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>FN01038637</td>
          <td>530681252013967</td>
           <td>DAVID MAJONA</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307258252014821</td>
           <td>CARL DANIEL JOUBERT</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307260252014825</td>
           <td>HARBERTUS NICUWOUDT</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>3737</td>
          <td>5307051252014407</td>
           <td>GEORGE M RAMATSEBE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>3737</td>
          <td>5307050252014405</td>
           <td>THABISO PHAKEDI</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>3737</td>
          <td>5307049252014403</td>
           <td>SABATA M NTSALA</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>3737</td>
          <td>5307047252014399</td>
           <td>SERAME S MPEDI</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5897</td>
          <td>5306804252013913</td>
           <td>JOSEPH AISENG</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5948</td>
          <td>5307330252014965</td>
           <td>GERHARD PIETERSEN</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5948</td>
          <td>5307327252014959</td>
           <td>PALADZAI NYAMGUMBE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5948</td>
          <td>5307326252014957</td>
           <td>EDWIN BOTLHALE GASEWAGAE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5948</td>
          <td>5306175252012655</td>
           <td>ALEMU OLKAMO BIREMO</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307263252014831</td>
           <td>JACK VAN VUUREN</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307262252014829</td>
           <td>JOHAN STEENKAMP</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307261252014827</td>
           <td>SEUN MODIBOA</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307256252014817</td>
           <td>ANNETA PIENAAR</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307254252014813</td>
           <td>KATLEGO KORT JAAS</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306765252013835</td>
           <td>NICOLAAS GELDENHUYS</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306764252013833</td>
           <td>REYANAYI ZHANGAZHA</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306763252013831</td>
           <td>REYANAYI ZHANGAZHA</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306762252013829</td>
           <td>SAMUEL THOGOMUSI</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306757252013819</td>
           <td>EUGENE MYBURGH</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306756252013817</td>
           <td>JACOB RAMPOU</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5917</td>
          <td>5306835252013975</td>
           <td>D T MAKWAE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5917</td>
          <td>5306834252013973</td>
           <td>NZ MUNDALAMO</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5917</td>
          <td>5306833252013971</td>
           <td>RUSSEL SHONIWA</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306766252013837</td>
           <td>ABDI MOHAMED</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306767252013839</td>
           <td>ANDRIES BAMBANE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306768252013841</td>
           <td>TLOU WILLIAMS</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5937</td>
          <td>5307253252014811</td>
           <td>A COLLEN RAMASIKE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5917</td>
          <td>5306828252013961</td>
           <td>VJ MANHIQUE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306759252013823</td>
           <td>ASHENAFI NIGUSSE LAME</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5917</td>
          <td>5306827252013959</td>
           <td>LJ MOEPI</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5915</td>
          <td>5307109252014523</td>
           <td>MOGOTHO ALPHIOS SELEPE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5915</td>
          <td>5307112252014529</td>
           <td>ISMAEL MOTLELE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5915</td>
          <td>5307114252014533</td>
           <td>JOHN RAMATUME MAHLATSI</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5915</td>
          <td>5307115252014535</td>
           <td>JOHN RAMATUME MAHLATSI</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5958</td>
          <td>5306769252013843</td>
           <td>JABULANI MALIKANE</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		        
     
        <tr>
        <td>2014-01-14</td>
         <td>5917</td>
          <td>5306832252013969</td>
           <td>RODNEY MUZA</td>
             <td></td>
             <td></td>
             
          
         
          
        </tr>
		            </table>
  </div>
 
 
  
</div>

</body>
</html>

You’re missing the closing table tag…

How to fix it is the question, normally I would structure my code a little different, but this should do the trick for you…

After this

[php]

[/php]

Add:
[php]<?php iEchoEndTableTag = 0;?>[/php]

Change:

[php] <?php do { if ($tmpdate != $row_rsoffence['courtdate']) { ?>[/php]

To:

[php] <?php do { if ($tmpdate != $row_rsoffence[‘courtdate’]) {
if( iEchoEndTableTag != 0) { echo ‘’; } ; ?>[/php]

Change:
[php]

<?php echo "COURT: POTCHEFSTROOM NO:C COURTDATE " . $row_rsoffence['courtdate'] ; ?>

[/php]
To:
[php]

<?php echo "COURT: POTCHEFSTROOM NO:C COURTDATE " . $row_rsoffence['courtdate'] ; iEchoEndTableTag = 1; ?>

[/php]
Sponsor our Newsletter | Privacy Policy | Terms of Service