Mega Code Archive

 
Categories / Php / Strings
 

A period ( ) character is used to combine two separate variables into a single string

<?php     $string = "Thank you for buying ";     $newstring = $string . "my book!"; ?>