Code Search for Developers
 
 
  

long_table.php from Group-Office groupware at Krugle


Show long_table.php syntax highlighted

<html>
<style>
table { margin: auto; }
td {
  font-size: 0.8em;
  padding: 4pt;
  text-align: center;
  font-family: sans-serif;
}
</style>
<body>
<table>
<thead>
<tr>
<td colspan="20">Header</td>
</tr>
</thead>
<?php
$i_max = 40;
$j_max = 20;

for ( $i = 1; $i <= $i_max; $i++): ?>
<tr>
<?php
for ( $j = 1; $j <= $j_max; $j++) {
  $r = (int)(255*$i / $i_max);
  $b = (int)(255*$j / $j_max);
  $g = (int)(255*($i + $j)/($i_max + $j_max));
  $c = "black;";
  $bg = "rgb($r,$g,$b)";
  echo "<td style=\"color: $c; background-color: $bg;\">" . ($i * $j) . "</td>\n";
}
?>
</tr>
<?php endfor; ?>
</table>
</body>
</html>




See more files for this project here

Group-Office groupware

Group-Office is a powerfull modular Internet/Intranet application framework. It features calendaring, project management, e-mail, tasks, addressbook, file management.

Project homepage: http://sourceforge.net/projects/group-office
Programming language(s): JavaScript,Pascal,PHP
License: other

  anchor.html
  anchor_link.html
  background_image.html
  baseline.html
  border_test.html
  common.css
  demo_01.html
  dompdf_simple.png
  entities.html
  gif_test.html
  html_attributes.html
  image.html
  latin1.html
  long_table.php
  margin.html
  pages.html
  php_test.php
  print_static.css
  simple_ul.html
  special.html
  symbols.html
  table.html
  table_01.html
  table_image.html
  ul.html
  unicode.html