We have two variables:
$first_name = "Tomislav"; $last_name = "Santek";
We need to create a new variable $full_name that will contain the content of the variables $first_name and $last_name, separated with a whitespace, so that we end up with the full name.
When we echo the new variable we are expecting this result:
Tomislav Santek
How can we achive this?
Facebook
Rss feed
Twitter