The most viewed posts

Registry Reviver

Web Development Services

About Desktop Icons in Windows Computer

How to clean up Windows Computer

How to make a computer secure and run faster

Driver Booster

CCleaner

Myanmar font and keyboard for Windows

Advanced System Care

Contact Me

The most viewed items

Dell Inspiron 5559

Desktop Hard Disk

HP ProBook 430

Laptop RAM

SONY Playstation Portable

External Hard Disk

Laptop

ZilaStar ICT Jun 08 2019, 11:30:27

While loop in php

<?php
$text = 'I am Thet Naing Win.';
$count = 1;
while($count <= 10){
  echo $count. ' '.$text.'!</br>';
  $count ++;
}
?>


ZilaStar ICT Jun 07 2019, 11:20:16

For loop in php

<?php
$text = 'I am Thet Naing Win.';
for($count = 1; $count <= 10; $count++){
echo $count. ' '.$text. '!</br>';
}
?>


ZilaStar ICT Jun 06 2019, 13:31:16

For each statement in php

<?php
 $food = array('Healthy'=>array('Salad', 'Milk', 'Coconet', 'Ground_nut'),

              'Unhealthy'=>array('Alcohol', 'Beer', 'Ice_cream'));

foreach($food as $element => $inner_element){
  echo '</br><strong>'.$element.'</strong></br>';

foreach($inner_element as $item){
  echo $item.'</br>';
}
}
?>


ZilaStar ICT Jun 06 2019, 11:18:26

Switch statement in php

$date = 'Sunday';

switch($date){
case 'Saturday';
case 'Sunday';
echo 'It is weekend!';
break;

default;
echo 'It is not weekend day!';
break;
}
?>


ZilaStar ICT Jun 05 2019, 11:13:13

If statement in php

<?php
$num1 = 30;
$num2 = 40;
if($num1 > $num2){
  echo 'Num1 is greater than Num2!';
} else if($num1 == $num2){
  echo 'Num1 and Num2 are equal!';
}else{
  echo 'Num2 is greater than Num1!';
}
?>


ZilaStar ICT Jun 04 2019, 13:03:41

String replace in php

<?php
$string = 'I am thet naing win';
$find = array('thet', 'naing', 'win');
$replace = array('THET', 'NAING', 'WIN');
$string_new = str_replace($find, $replace, $string);
echo $string_new;
?>


ZilaStar ICT Jun 04 2019, 12:59:44

String position in php

<?php
$string = 'I am Thet Naing Win. This is PHP Testing and Word position Test. If you are insterested in PHP, please join us!';
$find = 'T';
$find_length = strlen($find);
$offset = 1;
while ($strpos = strpos($string, $find, $offset)){
echo 'The Character <strong>'.$find. '</strong> is found at '.$strpos.'.</br>';
$offset = $strpos + $find_length;
}
?>


ZilaStar ICT Jun 03 2019, 12:54:57

String lower and upper in php

We can change all characters to lower case by using strtolower. The following code is an example.

<?php
$string = 'I am ThEt NainG WiN!';
$string_low = strtolower($string);
echo $string_low;
?>

We can also change all characters to upper case by using strtoupper. The following is an example.

<?php
$string = 'I am ThEt NAInG win!';
$string_up = strtoupper($string);
echo $string_up;
?>


ZilaStar ICT Jun 03 2019, 12:43:52

String trim in php

<?php
$string = 'I am Thet Naing Win.';
$string_trimmed = rtrim($string);
echo $string_trimmed;
?>


ZilaStar ICT Jun 02 2019, 21:40:35

String reverse in php

<?php
$string = 'I am Thet Naing Win';
$string_reversed = strrev($string);
echo $string_reversed;
?>


ZilaStar ICT Jun 01 2019, 21:37:28

String word count in php

<?php
$string = 'I am Thet Naing Win and who are you?';
$string_word_count = str_word_count($string, 1);
print_r($string_word_count);
?>


ZilaStar ICT Jun 01 2019, 21:33:13

String length in php

<?php
$string = 'I am Thet Naing Win';
$strlen = strlen($string);
echo $strlen;
?>


Page : 19 of 30
To Contact
Available Services
Terms and Conditions