CoboCards App FAQ & Wishes Feedback
Language: English Language
Sign up for free  Login

This flashcard is just one of a free flashcard set. See all flashcards!

All main topics / Webprogrammierung / webprogrammierung / Frank_Webprogrammierung
3
Kontrollstrukturen if, switch
<?php
if ($i == 0) {
    echo "i ist gleich 0";
} elseif ($i == 1) {
    echo "i ist gleich 1";
} elseif ($i == 2) {
    echo "i ist gleich 2";
}

switch ($i) {
    case 0:
        echo "i ist gleich 0";
        break;
    case 1:
        echo "i ist gleich 1";
        break;
    case 2:
        echo "i ist gleich 2";
        break;
}
?>
New comment
Flashcard info:
Author: learner94
Main topic: Webprogrammierung
Topic: webprogrammierung
Published: 26.08.2017

Cancel
Email

Password

Login    

Forgot password?
Deutsch  English