<?php
  $greeting = "Hello, ";
  $name = "John";

  $greeting .= $name;

  echo $greeting; // Outputs: Hello, John
?>