Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.88 KB | None | 0 0
  1. <?php
  2.  
  3. //cabeçalho
  4. echo '<table width="788" border="1">';
  5.   echo '<thead>';
  6.     echo '<tr>';
  7.       echo '<th width="62" align="center" valign="middle">1</th>';
  8.       echo '<th width="200" align="center" valign="middle">1</th>';
  9.       echo '<th width="62" align="center" valign="middle">2</th>';
  10.       echo '<th width="200" align="center" valign="middle">2</th>';
  11.       echo '<th width="62" align="center" valign="middle">3</th>';
  12.       echo '<th width="200" align="center" valign="middle">3</th>';
  13.     echo '</tr>';
  14.   echo '</thead>';  
  15.  
  16.   while ($dados_ouvinte = mysql_fetch_array($sql_ouvintes)) {
  17.  
  18.     echo '<tr>';
  19.       echo '<td colspan="2" align="left">'.$dados_ouvinte[''].'</td>';
  20.       echo '<td colspan="2" align="left">'.$dados_ouvinte[''].'</td>';
  21.       echo '<td colspan="2" align="left">'.$dados_ouvinte[''].'</td>';
  22.     echo '</tr>';
  23.  
  24.   }
  25.  
  26. echo '</table>';
  27.  
  28.  
  29. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement