halo selamat berjumpa lagi di blog Praktikum..    Pembahasan kali ini adalah mengenai pembahasan :   Struktur Kontrol - Percabangan di PHP   Percabangan  Percabangan (decision-making) sebagai cara untuk untuk memeriksa isi  suatu variabel atau hasil perhitungan ekspresi dan mengambil tindakan yang sesuai dengan kondisi variable tersebut.   macam macam percabangan   Bentuk If (If-else, If- else if – else, Nested If)  Bentuk Switch-case  Ternary( ?: )   Bentuk IF-Else   if(condition){  // statement 1 goes here  }else{  // statemant 2 goes here  }  // statement 3 goes here   Bentuk IF-Else If   if(condition1){  // statement 1  }elseif(condition2){  // statement 2  }else{  // statement 3  }  // statement 4    Nested IF( If Bersarang)   if(condition){  if(condition1){     //statement 1 goes here  }else{     // statemant 2 goes here  }  }else{  // statemant 3 goes here  }    Switch-case   switch(a){  case 1; // statement 1 goes here break;  case 2; // statement 2 goes here...