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

Upload: vaughn-robertson

Post on 14-Dec-2015

214 views

Category:

Documents


0 download

TRANSCRIPT

  • 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