So I'm looking to do a heat map, I have the numbers 1-59 and a loop that checks historical data from SQL for matches then adds them up in a variable. This is based on how much historical data the user wants to pull defined by $_post draw (1 - infinity)
<?php
public function displaySheet() {
$drawsize = $_POST['draw'];
$query = "SELECT * FROM $this->db ORDER BY date DESC";
$result = mysql_query($query);
$num = mysql_num_rows($result);
$i = 0;
while ($i < $drawsize) {
$rowresource = mysql_fetch_array($result);
$rnum1 = $rowresource['num1'];
$rnum2 = $rowresource['num2'];
$rnum3 = $rowresource['num3'];
$rnum4 = $rowresource['num4'];
$rnum5 = $rowresource['num5'];
for ($y = 1; $y < 60; $y++) {
$basename = 'n';
$tempname = $basename . $y;
if ($rnum1 == $y) {
$$tempname++;
};
if ($rnum2 == $y) {
$$tempname++;
};
if ($rnum3 == $y) {
$$tempname++;
};
if ($rnum4 == $y) {
$$tempname++;
};
if ($rnum5 == $y) {
$$tempname++;
};
}
$i++;
}
?>
<table border="1">
<tr>
<?php
$odddiv = round($drawsize / 9.8);
if ($odddiv < 1) {
$odddiv = 1;
};
$odds1 = $odddiv;
$odds2 = $odds1 + $odddiv;
$odds3 = $odds2 + $odddiv;
$odds4 = $odds3 + $odddiv;
$odds5 = $odds4 + $odddiv;
for ($y = 1; $y < 60; $y++) {
$bn = 'n';
$tn = $bn . $y;
$color = 'green';
if ($$tn >= $odds1 && $$tn < $odds2) {
$color = 'yellow';
}
if ($$tn >= $odds2 && $$tn < $odds3) {
$color = 'darkorange';
}
if ($$tn >= $odds3 && $$tn < $odds4) {
$color = 'red';
}
if ($$tn >= $odds4 && $$tn < $odds5) {
$color = 'deeppink ';
}
if ($$tn >= $odds5) {
$color = 'purple';
}
?>
<td align="center" bgcolor="<?php echo $color ?>"><font size="2"><?php echo '<strong>'.$y.'</strong><br/>1 in<br/> '.probCalc($$tn + 1, 1 ,59); ?></font></td>
<?php if ($y == 9) { ?></tr><tr><?php } ?>
<?php if ($y == 18) { ?></tr><tr><?php } ?>
<?php if ($y == 27) { ?></tr><tr><?php } ?>
<?php if ($y == 36) { ?></tr><tr><?php } ?>
<?php if ($y == 45) { ?></tr><tr><?php } ?>
<?php if ($y == 54) { ?></tr><tr><?php } ?>
<?php if ($y == 59) { ?></tr><?php } ?>
<?php } ?>
</table>
}
<?php
function probCalc($nR, $nE, $nS) {
if ($nR > 0 && $nE > 0 && $nS > 0) {
$a = $nE;
$b = $nS;
for ($cnt = 1; $cnt < $nR; $cnt++) {
$a = $a * $nE;
$b = $b * $nS;
}
$c = $b / $a;
return round($c);
}
?>
$nR is how many historical matches it finds for that number, $nE is the number of ways to choose that number (in this case only 1), and $nS is the total number of objects (numbers) in the pool.
This 'seems' to be working, but It's to my understanding that I'm suppose to be getting percentages not whole numbers.
My problem beyond this is I want to group these numbers into 6 groups, like:
01-10 1 in - ? odds
11-20 1 in - ?? odds
21-30 so on..
31-40
41-50
51-59
As opposed to just putting a probability on each number 1-59 like I did.
Here is what i have so far, but I'm getting crazy results no matter what I do.
$i = 0;
while ($i < $drawsize) {
$rowresource = mysql_fetch_array($result);
$rnum1 = $rowresource['num1'];
$rnum2 = $rowresource['num2'];
$rnum3 = $rowresource['num3'];
$rnum4 = $rowresource['num4'];
$rnum5 = $rowresource['num5'];
// 9 digit groups calc **********************
//1st number***
if ($rnum1 > 0 && $rnum1 <= 10) {
$r10++;
};
if ($rnum1 > 10 && $rnum1 <= 20) {
$r20++;
};
if ($rnum1 > 20 && $rnum1 <= 30) {
$r30++;
};
if ($rnum1 > 30 && $rnum1 <= 40) {
$r40++;
};
if ($rnum1 > 40 && $rnum1 <= 50) {
$r50++;
};
if ($rnum1 > 50 && $rnum1 <= 60) {
$r60++;
};
// 2nd Number***
if ($rnum2 > 0 && $rnum2 <= 10) {
$r10++;
};
if ($rnum2 > 10 && $rnum2 <= 20) {
$r20++;
};
if ($rnum2 > 20 && $rnum2 <= 30) {
$r30++;
};
if ($rnum2 > 30 && $rnum2 <= 40) {
$r40++;
};
if ($rnum2 > 40 && $rnum2 <= 50) {
$r50++;
};
if ($rnum2 > 50 && $rnum2 <= 60) {
$r60++;
};
//3rd Number***
if ($rnum3 > 0 && $rnum3 <= 10) {
$r10++;
};
if ($rnum3 > 10 && $rnum3 <= 20) {
$r20++;
};
if ($rnum3 > 20 && $rnum3 <= 30) {
$r30++;
};
if ($rnum3 > 30 && $rnum3 <= 40) {
$r40++;
};
if ($rnum3 > 40 && $rnum3 <= 50) {
$r50++;
};
if ($rnum3 > 50 && $rnum3 <= 60) {
$r60++;
};
//4th Number***
if ($rnum4 > 0 && $rnum4 <= 10) {
$r10++;
};
if ($rnum4 > 10 && $rnum4 <= 20) {
$r20++;
};
if ($rnum4 > 20 && $rnum4 <= 30) {
$r30++;
};
if ($rnum4 > 30 && $rnum4 <= 40) {
$r40++;
};
if ($rnum4 > 40 && $rnum4 <= 50) {
$r50++;
};
if ($rnum4 > 50 && $rnum4 <= 60) {
$r60++;
};
//5th Number***
if ($rnum5 > 0 && $rnum5 <= 10) {
$r10++;
};
if ($rnum5 > 10 && $rnum5 <= 20) {
$r20++;
};
if ($rnum5 > 20 && $rnum5 <= 30) {
$r30++;
};
if ($rnum5 > 30 && $rnum5 <= 40) {
$r40++;
};
if ($rnum5 > 40 && $rnum5 <= 50) {
$r50++;
};
if ($rnum5 > 50 && $rnum5 <= 60) {
$r60++;
};
?>
<table border="1">
<tr>
</tr>
<tr>
<?php
$odddiv = round($drawsize / 4.9);
if ($odddiv < 1) {
$odddiv = 1;
};
$odds1 = $odddiv;
$odds2 = $odds1 + $odddiv;
$odds3 = $odds2 + $odddiv;
$odds4 = $odds3 + $odddiv;
$odds5 = $odds4 + $odddiv;
for ($y = 1; $y <= 6; $y++) {
$color = 'green';
$bn = 'r';
$bn2 = '0';
$tn = $bn . $y . $bn2;
if ($$tn >= $odds1 && $$tn < $odds2) {
$color = 'yellow';
}
if ($$tn >= $odds2 && $$tn < $odds3) {
$color = 'darkorange';
}
if ($$tn >= $odds3 && $$tn < $odds4) {
$color = 'red';
}
if ($$tn >= $odds4 && $$tn < $odds5) {
$color = 'deeppink ';
}
if ($$tn >= $odds5) {
$color = 'purple';
}
?>
<?php $Probresult = probCalc( $$tn+1, 9.83 , 59)?>
<td align="center" bgcolor="<?php echo $color ?>"><font size="2"><?php echo $y - 1 . '1-' . $y . '0<br/>1 in<br/> '. $Probresult. '<br>'. $$tn?></font></td>
<?php } ?>
</tr>
</table>
Sorry, I have a bad habit of inconsistent variable names. Any help would be great! Thanks in advance!