$operators = array(
"+",
"-",
"*",
"/"
);
foreach($operators as $key => $opp){
//echo "key: $key, opperator: $opp <br />";
echo $result = 4 . $opp . 4 . "<br />";
}
why isn't my code counting the possible combinations?
like:
echo $result = 4 + 4;
8