iki soruluk basit bir test hazırlımak için aşağıdaki kodları düzenleyin
<html lang="tr_TR">
<head>
<meta charset="utf-8">
<title>PHP'de Basit Bir Test Hazırlama</title>
</head>
<body>
<form action="" method=POST>
<h2>1) Aşağıdakilerden hangisi tümünü seçer?</h2>
<input type="radio" name="r" value="a"> CTRL+A
<input type="radio" name="r" value="b"> CTRL+C
<input type="radio" name="r" value="c"> CTRL+S
<input type="radio" name="r" value="d"> CTRL+V
<br>
<br>
<h2>2) Aşağıdakilerden hangisi oturumu kapatır?</h2>
<input type="radio" name="rr" value="a">window+R
<input type="radio" name="rr" value="b">window+E
<input type="radio" name="rr" value="c">window+L
<input type="radio" name="rr" value="d">window+Break<br>
<br>
<input type="submit" value="HESAPLA" name="btn"><br>
</form>
< ?php
if (isset($_POST['r']) & isset($_POST['r'])) {
$soru1=$_POST['r'];
$soru2=$_POST['rr'];
$d=0;
$y=0;
if($soru1=="a"){
$c1="DOĞRU";
$d=$d+1;
} else {
$c1="YANLIŞ";
$y=$y+1;
}
if($soru2=="c") {
$c2="DOĞRU";
$d=$d+1;
} else {
$c2="YANLIŞ";
$y=$y+1;
}
echo"Doğru sayısı=$d<br>";
echo"Yanlış sayısı=$y<br>";
}
?>
</body>
</html>