01.3: String Concatenation

We have learned a little about strings. How do we combine two strings? In this lesson we are going to start looking at string variables. And we are going to learn how to concatenate two or more of them together into one single string.


https://www.youtube.com/watch?v=I6Oaue8nLCU





<?php
# * String concatenation.

$first_name = "Jason";
$last_name = "Smith";

$full_name = $first_name . $last_name;

print "full: $full_name\n";

# * Exercise: Add a space between $first_name and $last_name

?>