You don't have an account yet?
Become part of our PHP community and register now...
if($art == 0) { echo"Ja"; } else { echo"Nein"; }
echo ($art == 0) ? "Ja" : "Nein";
Comment