Guest User

Untitled

a guest
Jan 19th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <table border="1" style="border:2px solid black;">
  2. <thead>
  3. <tr>
  4. <td>time</td>
  5. <td>android_version</td>
  6. <td>device_id</td>
  7. <td>app_version</td>
  8. <td>stacktrace</td>
  9. <td>package</td>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <?php
  14. //etc database stuff
  15. while($row = mysql_fetch_assoc($result)) {
  16. ?>
  17. <tr>
  18. <td><?php echo $row['time'];?></td>
  19. <td ><?php echo $row['android_version'];?></td>
  20. <td ><?php echo $row['device_id'];?></td>
  21. <td ><?php echo $row['app_version'];?></td>
  22. <td ><?php echo $row['stacktrace'];?></td><!-- This is the part that is very long. The other text is centered based on the length of this. -->
  23. <td><?php echo $row['package'];?></td>
  24. </tr>
  25. <?php
  26. }
  27. ?>
  28. </tbody>
  29. </table>
  30.  
  31. <td valign="top">
  32.  
  33. <td style="vertical-align: top">
Add Comment
Please, Sign In to add comment