<?php
$division=$row['mark'];
$pass="Passed";
if($division>=80 && $pass==include "result.php")// Result.php has two value: one is `Pass` and the other is `Fail`.
{
echo "Letter";
}
elseif($division>=70 && $pass==include "result.php")
{
echo "First";
}
else
{
echo "Fail";
}
?>
我想在这里输出的是: if $division
is equal to 80 同时 if $pass
is equal to Passed
, echo Letter
。但如果$division
小于 70,则回显Fail
;这里也$pass
等于fail
which 取自result.php
。我一直在尝试使用以下代码输出它,但它不起作用。小于 70FailFailFailFail
时输出。$division
Result.php 的代码
<?php
$eng=40;
$mizo=40;
$hindi=40;
$maths=40;
$ss=40;
$science=40;
if ($eng>=40 && $mizo>=40 && $hindi>=40 && $maths>=40 && $ss>=40 && $science>=40)
{
echo "<font color=green>Passed</font>";
}
else
{
echo "<font color=red>Failed</font>";
}
?>