Wednesday, 26 March 2014


Bab 7

Switch

 

 

Switch digunakan untuk melakukan suatu aksi dari beberapa aksi yang berbeda berdasarkan pada satu atau lebih kondisi yang berbeda.

 

Sintaks

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;
}

 

Program7-1.php

<html>
<body>
<?php
switch ($x)
{
case 1:
  echo "Number 1";
  break;
case 2:
  echo "Number 2";
  break;
case 3:
  echo "Number 3";
  break;
default:
  echo "No number between 1 and 3";}
?>
</body>
</html>

Related Posts:

  • Scorpions Lirik Lagu Holiday "Holiday" Let me take you far away You'd like a holiday Let me take you far away You'd like a holiday Exchange the cold days for the sun A good time and fun Let me take you far away You'd like a holiday … Read More
  • Bab 14 Bab 14 PHP Date() Fungsi date() digunakan untuk memformat waktu dan tanggal. Sintaks date(format,timestamp) Parameter Keterangan format Required. Specifies the format of th… Read More
  • GnR Lirik Lagu Don't Cry Talk to me softly  There is something in your eyes  Don't hang your head in sorrow  And please don't cry  I know how you feel inside I've  I've been there before  Somethin is changin' inside you… Read More
  • Scorpion Lirik Lagu The Zoo "The Zoo" The job is done and I go out Another boring day I leave it all behind me now So many worlds away I meet my girl, she's dressed to kill And all we gonna do Is walk around to catch the thrill On streets we … Read More
  • GnR Lirik Lagu Don't Cry Talk to me softly  There is something in your eyes  Don't hang your head in sorrow  And please don't cry  I know how you feel inside I've  I've been there before  Somethin is changin' inside you… Read More

0 comments:

Post a Comment

Blogger news

BTemplates.com

Powered by Blogger.

You can replace this text by going to "Layout" and then "Page Elements" section. Edit " About "

Search This Blog

Pointer

Blogger Tricks

Popular Posts