tigomark Posted February 15, 2008 Share Posted February 15, 2008 Hello, I am trying to get the remainder of a field from the modulus of 5 to populate additional table headers. if((count($val->type) - count($val->type != "N/A")) % 5){ $reporthtml .= sprintf("<td align=\"center\" nowrap=\"nowrap\"> </td>"); } In the implimentation there are 8 fields 6 are N/A and 2 are good so I have 2 populated headers but I need to populate the other 3 with the empty space. However I could have 5 values so I am just trying to get the current amount and then fill the remaining with empty space. Any help would be great. Link to comment https://forums.phpfreaks.com/topic/91176-getting-the-remainder/ Share on other sites More sharing options...
tigomark Posted February 15, 2008 Author Share Posted February 15, 2008 I think that this might make more sense if I posted the whole code chunk (or maybe not since It's not making sense for me) if (is_array($this->dataTypes->data)) { reset($this->dataTypes->data); while (list($key, $val) = each ($this->dataTypes->data)) { if ($val->type != "N/A" && $val->type < 5) { $reporthtml .= sprintf("<td align=\"center\" nowrap=\"nowrap\">%s</td>", $val->name); }else if((count($val->type) - count($val->type != "N/A")) % 5){ $reporthtml .= sprintf("<td align=\"center\" nowrap=\"nowrap\"> </td>"); } Link to comment https://forums.phpfreaks.com/topic/91176-getting-the-remainder/#findComment-467832 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.