$url = "quickref.me"; echo "I'm learning PHP at $url"; // Concatenate strings echo "I'm learning PHP at " . $url; $hello = "Hello, "; $hello .= "World!"; echo $hello; # => Hello, World! 

See: Strings

Comments