<?php
    $a=3;
    $b=4;
    if ($a > $b) {
        echo "a ist größer als b";
    } else {
        echo "a ist NICHT größer als b";
    }
?>