Jump to content

getting the remainder


tigomark

Recommended Posts

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.