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