<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 
<head> 
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> 
    <title>MAAŞ</title> 
     <style type="text/css">  
body {background:grey; font:24px} 

    </style> 
     
</head> 
<body> 
    <?php 
     
    $maas= $_POST['maas']; 
     
    if ($maas>20000) { 
     
     
    $cevir= ($maas*1.98); 
    $kesinti=($cevir*0.35); 
    $kalan= ($cevir-$kesinti); 
     
    echo $maas. " $ olan kazancın " .$cevir. " TL değerindedir.. <br><br> Bu nedenle " .$kesinti. " vergi ödeyeceksin ve sana kalan tutar ".$kalan." TL olacaktır.";     
    } else { 
     
    echo "Kazancın ".$maas." $ bu nedenle kesinti yapılmayacak..<br><br>".$maas." $".$cevir." TL dir.."; 
      
     
    } 
     
     
     
     
    ?> 
</body> 
</html>
böyle dene