Monday, 14 July 2014

Concatation in Php

Concatation in Php :-


You have Concatation in php Using the Dot(.) Sign.

Syntax :-

      echo "String Message".$Variable_name;

  • Above Syntax into Display the Concatation between String and Variable .
Example :-

<?php

      $a=66;
      echo "Value of the A Variable : ".$a;

?>

No comments:

Post a Comment