ទំព័រដែលថ្មីៗ

Sunday, December 8, 2013

Switch statement

                          i.   SWITCH STATEMENT
ដើម្បីធ្វើការជ្រើសរើស ឬកំណត់លក្ខខណ្ឌនៃកូដដើម្បីដំណើរការ។
Syntax:
Switch (n)
{
Case label1:
            កូដនិងដំណើរការ ប្រសិនបើ n=label1;
Break;
Case label2:
            កូដនិងដំណើរការ ប្រសិនបើ n=label1;
Break;
Case lable3:
            កូដនិងដំណើរការ ប្រសិនបើ n=label1;
Break;
……………
Default:
            កូដនិងដំណើរការ ប្រសិនបើ n ខុសពី label ទាំងអស់ខាងលើ
}         

N
កូដ
លទ្ធផល
1
<?php
$myswitch="a";
switch($myswitch){
case "a":
echo 'This is letter A';
break;
case "b":
echo 'This is letter B';
break;
case "c":
echo 'This is letter C';
break;
}?>
This is letter A

2
<form method="post" target="_self" id="frm">
Enter Number:<input type="text" name="txtnum" value="<?php echo $_POST["txtnum"]?>"/><br />
<input type="submit" name="btnshow" value="show" /><br />
Result<input type="text" name="txtresult" id="txtresult" />
</form>
<?php
            $num=$_POST["txtnum"];
            switch($num){
            case 1:
            echo "Riem";
            echo "<script>frm.txtresult.value='Riem';</script>";
            break;
            case 2:
            echo "Cheat";
            break;
            case 3:
            echo "Chantou";
            break;
            case 4:
            echo "Dona";
            break;
            case 5:
            echo "Pheack";
            break;
            default:
            echo "The value only from 1 untill 5!";
            }?>







អាស្រ័យ​តាមការបញ្ចូល​អ្នកប្រើប្រាស់

IX. ARRAYS Array គឺជាប្រភេទទិន្នន័យដែលអាចផ្ទុក ទិន្នន័យច្រើននៅលើ Variable តែមួយ។ Array ចែកចេញជាបីប្រភេទគឺ Numberic, Associative និង Multidimensional Array
Array ដែលប្រើជាមួយតម្លៃលេខ

N
កូដ
លទ្ធផល
1
<?php
$num=array("html", "JavaScript", "php");
echo 'This my array:'.'<br>'.$num[0] .'<br>'.$num[1] .'<br>'.$num[2];
?>

This my array:
html
JavaScript
php

2
<?php
$num=array("html", "JavaScript", "php");
echo count($num);
?>
3

xvii. Associative Array Array ដែលប្រើជាមួយឈ្មោះ ឬពាក្យ
កូដ
លទ្ធផល
<?php
$score=array("html"=>"90","JavaScript"=>"100","php"=>"99");
echo 'html='.$score['html'];
?>

Html=90

<?php
            $aa["a"]="Associative Array";
            $aa['b']="Welcome home";
            echo $aa['a'] ."<br>";
            echo $aa['b']."<br>";
?>
Associative Arrray
Welcome home

xviii. Multidimensional Array
Array ដែលមាន Arrays នៅក្នុង Arrays
N
កូដ
លទ្ធផល
1
<?php
$IT = array(  "code"=>array
  (  "ASP",  "php",  "c++",  ),
  "langauge"=>array
  (  "Khmer",  "English",  ),  "network"=>array  (
  "Basic Network",  ));
echo $IT["code"][0];echo $IT["code"][1];echo $IT["code"][2];?>

ASPphpc++

0 សូមធ្វើការតំលៃផង:

Post a Comment

ស្វែងរក

 


MOM TENG
(Web Master , Designer , Journalist , and Video Editor )
Student of Social Communication and Journalism 2nd Generation and 2nd year in
Don Bosco Vocational Center Kep
Email : tengmom20@gmail.com , tengmom20@yahoo.com , tengmom20@hotmail.com , Tel :070286200
Skype : tengmom.donbsco.com , Twitter : momteng , Facebook : តេងវិជ្ជា ដុនបូស្កូ, Google+ : mom teng
My Another Website : cambodian1.wordpress.com , khmernowaday.blogspot.com, cambodianteng.blogspot.com/, My picasa , donboscoke.org
Youtube : My Videos
Address : Thmey Village , Prey Thom Commune , Kep City , Kep Province , Cambodia .
Thank!!!!!