Jump to content

[SOLVED] Arithmetic Operator Problems


Hilly_2004

Recommended Posts

Hi guys I have this simple script, but it doesn't some to be echoing the expect results...

 

Can anyone see where I'm going wrong?

 

<?php
$bowled = "15";
$caught = "12";
$stumped = "1";
$other = "5";

$highest = max($bowled, $caught, $stumped, $runout, $other); // Gets highest number of dismissals from the database

echo $highest

if ($highest === $bowled) {

$bowled_height = "160";
$caught_height = 160 / $caught;
$stumped_height = 160 / $stumped;
$runout_height = 160 / $runout;
$other_height = 160 / $other;

} elseif ($highest === $caught) {

$bowled_height = 160 / $bowled;
$caught_height = "160";
$stumped_height = 160 / $stumped;
$runout_height = 160 / $runout;
$other_height = 160 / $other;

} elseif ($highest === $stumped) {

$bowled_height = 160 / $bowled;
$caught_height = 160 / $caught;
$stumped_height = "160";
$runout_height = 160 / $runout;
$other_height = 160 / $other;

} elseif ($highest === $runout) {

$bowled_height = 160 / $bowled;
$caught_height = 160 / $caught;
$stumped_height = 160 / $stumped;
$runout_height = "160";
$other_height = 160 / $other;

} elseif ($highest === $other) {

$bowled_height = 160 / $bowled;
$caught_height = 160 / $caught;
$stumped_height = 160 / $stumped;
$runout_height = 160 / $runout;
$other_height = "160";

} else {

echo "Something's cocked up";

}

echo $bowled_height
echo $caught_height
echo $stumped_height
echo $runout_height
echo $other_height

Link to comment
https://forums.phpfreaks.com/topic/69109-solved-arithmetic-operator-problems/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.