Answers

Question and Answer:

  Home  PHP Developer

⟩ How To concatenate the two strings together in PHP?

You can use the string concatenation operator (.) to join two strings into one. Here is a PHP script example of string concatenation:

<?php

echo 'Hello ' . "world! ";

?>

This script will print:

Hello world!

 157 views

More Questions for you: