Advertisement
gersonab

table

Aug 16th, 2011
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.17 KB | None | 0 0
  1. <table width="100%" class="contentBox" id="datatable">
  2.             <thead>      
  3.         <tr>
  4.           <th>Vendedores</th>
  5.             <th>1&ordm; Bim. </th>
  6.             <th>2&ordm; Bim. </th>
  7.             <th>3&ordm; Bim. </th>
  8.             <th>4&ordm; Bim. </th>
  9.           </tr>
  10.           </thead>
  11.          
  12.         <?php do { ?>
  13.         <tbody>
  14.           <tr bgcolor="<?php echo ($ac_sw1++%2==0)?"#99FFCC":"#99FFFF"; ?>" onmouseout="this.style.backgroundColor=''" onmouseover="this.style.backgroundColor='#FFFFFF'">
  15.             <th><br /><?php echo $row_RsMinhasVendas['dis_nome']; ?><br /><br /></th>
  16.             <td align="center"><strong><?php echo $row_RsMinhasVendas['bim_bim1']; ?></strong><br /></td>
  17.             <td align="center"><strong><?php echo $row_RsMinhasVendas['bim_bim2']; ?></strong><br /></td>
  18.             <td align="center"><strong><?php echo $row_RsMinhasVendas['bim_bim3']; ?></strong><br /></td>
  19.             <td align="center"><strong><?php echo $row_RsMinhasVendas['bim_bim4']; ?></strong><br /></td>
  20.           </tr>
  21.           </tbody>
  22.           <?php } while ($row_RsMinhasVendas = mysql_fetch_assoc($RsMinhasVendas)); ?>
  23.          
  24.       </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement