Je moet ingelogd zijn om te stemmen.
function checkEven($input){ return (is_numeric($input)&(!($input&1))); }
function checkEven ($input) { return (($input % 2) === 0); }
function checkEven ($input){ return (($input % 2) === 0);}
if( $getal%2 == 0 ) { echo "even"; } else { echo "oneven"; }
if( $getal%2 == 0 ) { echo "even";} else { echo "oneven";}