CodeIgniter Forums
HTML Table Class, $this->table->generate($query) - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: HTML Table Class, $this->table->generate($query) (/showthread.php?tid=3308)



HTML Table Class, $this->table->generate($query) - El Forum - 09-23-2007

[eluser]Unknown[/eluser]
Code:
if ($cell == "")
{
  $out .= $this->empty_cells;
}
else
{
  $out .= $cell;
}
If data from database is 0 ($cell = 0), then this expression
Code:
($cell == "")
= TRUE