for ($i = 0; $i < 10; $i++) {
    echo "Value of i is: " . $i . "\n";
}$სახელი=echo $cvladisSaxeli ;<>!=true<=>$two=2 ; $three=3;  print $two<=>$three; // output -1
$four=4; $five=5;     print $five<=>$four; // output 1
$six=6 ; $siX=6 ; print $six<=>$siX; // output 0
true$პირველი . $მეორე $me="me da " ; $shen="shen"; $me.=$shen; // $me ცვლადი იღებს მნიშვნელობას "me da shen" $y= value1?? value2 ;$arr1 = [1, 2, 3];
$arr2 = [1, 2, 3];
if ($arr1 === $arr2) {
     echo "true";
     } else {
     echo "false";
     }
// the output will be trueconst arr3 = [1, 2, 3];
const arr4 = [1, 2, 3];
if (arr3 === arr4) {
console.log(true);
} else {
console.log(false);
}
// it outputs false<?php 
// Array types
  # Index array example
    $Georgian_cities = array("Tbilisi", "Mtskheta", "Kaspi", "Gori", "Khashuri", "Kareli");
    echo "I love " . $Georgian_cities[0] . "\n";
    echo "I always enjoy being in " . $Georgian_cities[1] . "," . "today is holiday related to " . $Georgian_cities[1] . "\n";
    echo "In my childhood, I lived in " . $Georgian_cities[2] . "\n";
    echo "I've some relatives in " . $Georgian_cities[3] . "\n";
    echo $Georgian_cities[4] . " is the city where I spent summer in my childhood " . "\n";
    echo "I have never been in " . $Georgian_cities[5] . "," . "although I have relatives in " . $Georgian_cities [5]. " too" . "."
?>  <?php 
  # another way to write variables, without an index array
    $city[0] = "Tbilisi";
    $city[1] = "Mtskheta";
    $city[2] = "Kaspi";
    $city[3] = "Gori";
    $city[4] = "Khashuri";
    $city[5] = "Kareli";
    echo "I love " . $city[0] . "\n";
    echo "I always enjoy being in " . $city[1] . "," . "today is holiday related to " . $city[1] . "\n";
    echo "In my childhood, I lived in " . $city[2] . "\n";
    echo "I've some relatives in " . $city[3] . "\n";
    echo $city[4] . " is the city where I spent summer in my childhood " . "\n";
    echo "I have never been in " . $city[5] . "," . "although I have relatives in " . $city[5] . " too" . "."
  
  ?>$students = array ('Elena', 'Nia', 'Zura');
foreach ($students as $student) {
    echo $student . "\n";
}
/*Outputs:
Elena
Nia
Zura*/
$age = array ("Elena" => "39", "Nia" => "11", "Zura" => "41");
foreach ($age as $x => $val) {
    echo "$x = $val" . "\n";
}
/*Outputs:
Elena = 39
Nia = 11
Zura = 41*/