Posts

Showing posts with the label result

Creating a grading system PHP Result

https://stackoverflow.com/questions/41474741/creating-a-grading-system-php https://webcheatsheet.com/php/if_else_switch.php what is exactly what you are trying to achieve ? A code that gives you your grade ( in categories ) based on the provided 2 scores ? You could implement switch statment in order to achieve this. The pseudo code goes like this: $workScore = $_POST [ 'coursework' ]; switch ( $workScore ) { case $workScore >= 70 and $workScore <= 100 : echo 'Your Grade is A' ; break ; case $workScore >= 60 and $workScore <= 69 : echo 'Your Grade is B+' ; break ; case $workScore >= 59 and $workScore <= 60 : echo 'Your Grade is B' ; break ; default : echo 'something else' : } Then after you have both results: written and work, then you calculate you final score and send it to the end user ------------------------------ ------------------ <?php $result = 70;...