1 Pertemuan 14 PHP: Conditions-loops-functions-Array Last Updated: 23 rd May 2011 By M. Arief .

download 1 Pertemuan 14 PHP: Conditions-loops-functions-Array Last Updated: 23 rd May 2011 By M. Arief .

If you can't read please download the document

Transcript of 1 Pertemuan 14 PHP: Conditions-loops-functions-Array Last Updated: 23 rd May 2011 By M. Arief .

  • Slide 1

1 Pertemuan 14 PHP: Conditions-loops-functions-Array Last Updated: 23 rd May 2011 By M. Arief http://arief.ismy.web.id Slide 2 2 Objectives To learn to use logical test operators to create compound conditional test statements To learn to use conditional test statements to compare numerical and string data values To learn to use looping statements to repeat other statements To learn to use several PHP functions useful for Web application development To learn to write and use your own functions http://arief.ismy.web.id Slide 3 3 IF-Statements if (some test) { // code here } else if (some other test) { // code here } else { // if neither test met, do this } http://arief.ismy.web.id Slide 4 4 Comparison Operator == Equals > Greater than < Less than >= Greater or equal to