String_Operators

 <?php

//  EXAMPLE 1
    $a = "Hello ";
    $s = $a . "World<br>";
    echo $s;

    //EXAMPLE 2
    $b = "Hello, ";
    $b .= "this is ";
    $b .= 555;
    $b .= " my World ";
    echo $b;

//OUTPUT:
//Hello World
// Hello, this is 555 my World

?>

Comments

Popular posts from this blog

Ajax Insert Records in Database Tutorial in PHP

Displaying Database data using Class, Object, Constructor, Destructor in PHP MySql

SubQuery with EXISTS and NOT EXISTS in PHP