Friday, 2 January 2015

Concatenation In PHP of Variables

In php concatenation operator represented by (.) Example:
<?php

$first="php";
$second="-guidelines.blogspot.com";

echo"$first"."$second"; // print output php-guidelines.blogspot.com

?>

No comments: