•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the PHP section within the Web Development category of DaniWeb, a massive community of 363,826 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,446 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our PHP advertiser: Lunarpages PHP Web Hosting
Views: 154 | Replies: 2 | Solved
![]() |
•
•
Join Date: May 2008
Posts: 9
Reputation:
Rep Power: 0
Solved Threads: 0
Hello everyone, just got a query regarding calculating
I'm building a form and depending on how you fill it in you are given a score, currently i am using if/else statements.
Here is an example
$age is taken from the database after the form is completed (persons age)
$mc is taken from the database after the form is completed (regarding a car crash in the last 3 years)
$age = say im 21 for example the outcome would be 2.5
$mc = I havent crashed my car in the past 3 years so my score would be 0.5
Can these two results be added together giving a total of 3.0?
I'm building a form and depending on how you fill it in you are given a score, currently i am using if/else statements.
Here is an example
$age is taken from the database after the form is completed (persons age)
$mc is taken from the database after the form is completed (regarding a car crash in the last 3 years)
$age = say im 21 for example the outcome would be 2.5
$mc = I havent crashed my car in the past 3 years so my score would be 0.5
Can these two results be added together giving a total of 3.0?
<?php
$age = 21
if ($age >61)
{
echo '0.5';
}
elseif (($age >= 51) && ($age <= 60))
{
echo '1.0';
}
elseif ($age <= 21)
{
echo '2.5';
}
elseif (($age >= 31) && ($age <= 50))
{
echo '1.5';
}
elseif ($age >= 60)
{
echo '1.5';
}
elseif (($age >= 22) && ($age <= 30))
{
echo '2.0';
}
?>
<BR>
<?php
$mc = 0
if ($mc == 0)
{
echo '0.5';
}
elseif (($mc >= 1) && ($mc <= 2))
{
echo '1.0';
}
elseif ($mc >2)
{
echo '1.5';
}
?>
<?php
$age = 21;
if ($age >61)
{
$age_score = '0.5';
}
elseif (($age >= 51) && ($age <= 60))
{
$age_score = '1.0';
}
elseif ($age <= 21)
{
$age_score = '2.5';
}
elseif (($age >= 31) && ($age <= 50))
{
$age_score = '1.5';
}
elseif ($age >= 60)
{
$age_score = '1.5';
}
elseif (($age >= 22) && ($age <= 30))
{
$age_score = '2.0';
}
?>
<BR>
<?php
$mc = 0;
if ($mc == 0)
{
$crash_score = '0.5';
}
elseif (($mc >= 1) && ($mc <= 2))
{
$crash_score = '1.0';
}
elseif ($mc >2)
{
$crash_score = '1.5';
}
$total=$age_score + $crash_score;
echo "age score $age_score <br>";
echo "crash score $crash_score <br>";
echo "total score ".$total;
?>![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb PHP Marketplace
Similar Threads
- My PHP math is calculating weird! (PHP)
- help in sql query (PHP)
- Calculating relevance from a search (PHP)
- Perform a calculation in a query (MS Access and FileMaker Pro)
- Warning: mysql_num_rows(): (PHP)
Other Threads in the PHP Forum
- Previous Thread: show data from database in a marquee
- Next Thread: Stupid error!!!



Linear Mode