Skip to content

Instantly share code, notes, and snippets.

@kira423
Created December 6, 2012 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kira423/4221167 to your computer and use it in GitHub Desktop.
Save kira423/4221167 to your computer and use it in GitHub Desktop.
Tables from while loop
php part
$result = $db->query("SELECT * FROM r_winners GROUP BY date ORDER BY date DESC");
while($rows = $result->fetch_assoc()){
print"<table class='cashout' style='width:100%;'>
<th colspan='3'>".$rows['jackpot_name']." Winners</th>
<tr>
<td style='width:33%;'>".$rows['winner']."</td><td style='width:33%;'>$".$rows['amount']."</td><td style='width:33%;'>".date("m/d/Y", $rows['date'])."</td></tr>
</tr></table>";
}
output
<table class='cashout' style='width:100%;'>
<th colspan='3'>Daily Jackpot Winners</th>
<tr>
<td style='width:33%;'>kira423</td><td style='width:33%;'>$0.30</td><td style='width:33%;'>12/05/2012</td></tr>
</tr>
<th colspan='3'>Daily Jackpot Winners</th>
<tr>
<td style='width:33%;'>Novas_Chick</td><td style='width:33%;'>$0.34</td><td style='width:33%;'>12/04/2012</td></tr>
</tr>
<th colspan='3'>Daily Jackpot Winners</th>
<tr>
<td style='width:33%;'>philyflash</td><td style='width:33%;'>$0.45</td><td style='width:33%;'>12/03/2012</td></tr>
</tr>
<th colspan='3'>Daily Jackpot Winners</th>
<tr>
<td style='width:33%;'>AtmCashGpt</td><td style='width:33%;'>$0.36</td><td style='width:33%;'>12/02/2012</td></tr>
</tr>
<th colspan='3'>Monthly Jackpot Winners</th>
<tr>
<td style='width:33%;'>xXchris744Xx</td><td style='width:33%;'>$1.176</td><td style='width:33%;'>12/01/2012</td></tr>
</tr>
<th colspan='3'>Monthly Jackpot Winners</th>
<tr>
<td style='width:33%;'>ropermichell</td><td style='width:33%;'>$0.588</td><td style='width:33%;'>12/01/2012</td></tr>
</tr>
<th colspan='3'>Monthly Jackpot Winners</th>
<tr>
<td style='width:33%;'>rootbeer</td><td style='width:33%;'>$0.196</td><td style='width:33%;'>12/01/2012</td></tr>
</tr></table>
I need these
<th colspan='3'>Monthly Jackpot Winners</th>
<tr>
<td style='width:33%;'>xXchris744Xx</td><td style='width:33%;'>$1.176</td><td style='width:33%;'>12/01/2012</td></tr>
</tr>
<th colspan='3'>Monthly Jackpot Winners</th>
<tr>
<td style='width:33%;'>ropermichell</td><td style='width:33%;'>$0.588</td><td style='width:33%;'>12/01/2012</td></tr>
</tr>
<th colspan='3'>Monthly Jackpot Winners</th>
<tr>
<td style='width:33%;'>rootbeer</td><td style='width:33%;'>$0.196</td><td style='width:33%;'>12/01/2012</td></tr>
</tr>
to be together
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment