<?php
    $a = "This is ";  
    $b = $a . "PHP tutorial"; // The output is 'This is PHP tutorial'
    $a .= "PHP tutorial"; // The output is also 'This is PHP tutorial'
?>