Presentation is loading. Please wait.

Presentation is loading. Please wait.

IDK0040 Võrgurakendused I harjutus 07: PHP: Operators, Switch, Forms Deniss Kumlander.

Similar presentations


Presentation on theme: "IDK0040 Võrgurakendused I harjutus 07: PHP: Operators, Switch, Forms Deniss Kumlander."— Presentation transcript:

1 IDK0040 Võrgurakendused I harjutus 07: PHP: Operators, Switch, Forms Deniss Kumlander

2 PHP Operators + - * / % Modulus (division remainder) ++ Increment: x=5; x++; => x=6 -- Decrement: x=5; x--; => x=4 = += x+=2  x=x+2 - = *= /= %=

3 PHP Operators Comparison Operators = =is equal to !=is not equal >is greater than <is less than >=is greater than or equal to <=is less than or equal to Logical Operators && || !

4 Conditional Statements if (condition) code to be executed if condition is true; else code to be executed if condition is false; <?php $d=date("D"); if ($d=="Fri") echo "Have a nice weekend!"; else echo "Have a nice day!"; ?>

5 Conditional Statements If more than one line should be executed when a condition is, for example, true: <?php if ($x==10) { echo "Hello "; echo "Good morning "; } ?>

6 The Switch Statement switch (expression) { case label1: code to be executed if expression = label1; break; case label2: code to be executed if expression = label2; break; default: code to be executed if expression is different from both label1 and label2; }

7 PHP Form Handling The most important thing to notice when dealing with HTML forms and PHP is that any form element in an HTML page will automatically be available to your PHP scripts. $_POST $_GET

8 PHP Form Handling Enter your name: Enter your age: Hello. You said that you are years old! welcome.php abc.html


Download ppt "IDK0040 Võrgurakendused I harjutus 07: PHP: Operators, Switch, Forms Deniss Kumlander."

Similar presentations


Ads by Google