Etiket: Php ile basit switch case uygulaması 1- bir
Php ile basit switch case uygulaması 1- bir
Php ile basit switch case uygulaması
<?php
$sayi=3;
switch ($sayi)
{
Case 1:
echo "Bir";
Break;
Case 2:
echo "İki";
Break;
Case 3:
echo "Üç";
Break;
}
?>Php Dersleri - Notları - Küçük Programlar