Posted by Judson Vaughn on 10/21/16 11:33
Group,
I have a function that grades a quiz. I want to show a page if the
student scores 80% or above.
Currently, the script reads:
<snippet>
$total = ($mygrade/$quiz->grade) ;
if ($total > .80) {
</snippet>
That means that if you score 80% precisely, you don't get the follow-up
script.
I believe I should re-write it like this:
<snippet>
$total = ($mygrade/$quiz->grade) ;
if ($total > .80 | .80) {
</snippet>
Is that right? Thanks in advance for your help.
Jud.
--
Judson Vaughn
jud@seitervaughn.com | jud@bizville.com
Seiter Vaughn Communications
12455 Plowman Court
Herndon, VA 20170
703.450.9740
svc
[Back to original message]
|